Dejo el codigo, espero que me puedan ayudar:
Código PHP:
$palabra = mysql_query("select * from series where is_numeric(nombre{0}) = true order by nombre");
if(mysql_num_rows($palabra) == 0) {
echo'No hay series';
}else {
while($datospalabra = mysql_fetch_array($palabra)) {
echo ''.$datospalabra[nombre].'<br>';
}
}