24/01/2010, 07:27
|
| | | Fecha de Ingreso: enero-2010 Ubicación: Veracruz / Mexico
Mensajes: 9
Antigüedad: 14 años, 10 meses Puntos: 0 | |
Respuesta: Actualizar un proyecto de hace 5 años en php con mysql HOLA DE NUEVO
YA PUDE RECUPERAR LA BASE DE DATOS ANTERIOR , PERO AHORA ESTOY TRABADO CON UN ERROR EN CODIGO, PODRIAS DECIRME CUAL ES MI ERROR
<?php
mysql_connect("localhost","root","");
$sSQL="select * from ESCUELAS";
$result=mysql_db_query("ESCUELAPUBLICA",$sSQL);
while ($row=mysql_fetch_array($result))
{
echo'<table width="250" border="3" align="left" >';
echo'<th scope="col">'; echo $row["NOMBRE"]; echo'</th>';
echo'<th scope="col">'; echo $row["DIRECCION"]; echo'</th>';
echo'</table>';
nl2br(); //Warning: nl2br() expects at least 1 parameter, 0 given
// in C:\xampp\htdocs\ESCUELA-PUBLICA\ESC_PART.php on line 77
}
?> |