Quisiera que por favor me ayudaran a revisar el siguiente error en mi pequeño/básico script php...
a continuación el script:
Cita:
Al revisar los logs de http puedo observar lo siguiente:<?php
$conexion = mysql_connect (
'localhost',
'root',
'',
'biblioteca'
);
if ($conexion == FALSE) {
echo('Error en la conexion.');
exit();
}
$resultado = mysql_query(
$conexion,
'SELECT * FROM genero'
);
if ($resultado == FALSE) {
echo('Error en la consulta.');
mysql_close($conexion);
exit ();
}
while ($fila = mysql_fletch_row($resultado)) {
printf (
"(%u) %s - %s<br/>",
$fila[0], $fila[1], $fila[2]
);
}
mysql_free_result($resultado);
mysql_close($conexion);
?>
$conexion = mysql_connect (
'localhost',
'root',
'',
'biblioteca'
);
if ($conexion == FALSE) {
echo('Error en la conexion.');
exit();
}
$resultado = mysql_query(
$conexion,
'SELECT * FROM genero'
);
if ($resultado == FALSE) {
echo('Error en la consulta.');
mysql_close($conexion);
exit ();
}
while ($fila = mysql_fletch_row($resultado)) {
printf (
"(%u) %s - %s<br/>",
$fila[0], $fila[1], $fila[2]
);
}
mysql_free_result($resultado);
mysql_close($conexion);
?>
Cita:
La BBDD si que existe, fijense:[Wed Jun 22 17:36:23 2011] [error] [client 127.0.0.1] PHP Warning: mysql_query(): supplied argument is not a valid MySQL-Link resource in /var/www/html/generos.php on line 18
Cita:
Que les parece?mysql> use biblioteca;
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from genero
-> ;
+----+--------+--------------+
| id | nombre | descripcion |
+----+--------+--------------+
| 1 | PM | PHP y MySQL |
| 2 | OS | OpenSIPS 1.6 |
| 3 | DG | Asterisk TDG |
+----+--------+--------------+
3 rows in set (0.00 sec)
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A
Database changed
mysql> select * from genero
-> ;
+----+--------+--------------+
| id | nombre | descripcion |
+----+--------+--------------+
| 1 | PM | PHP y MySQL |
| 2 | OS | OpenSIPS 1.6 |
| 3 | DG | Asterisk TDG |
+----+--------+--------------+
3 rows in set (0.00 sec)
Un saludo!