Que significa?
La line 20 la transcribo abajo, el script entero es haci:
Código PHP:
<html>
<head>
<title>Coneccion a base de datos por <--MaPPeR--></title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body>
<table width="75%" border="0">
<?php
$host = "localhost" ;
$user = "**********" ;
$password = "**********" ;
$result=mysql_query("select * from prueba");
mysql_connect($host,$user,$password);
$result = mysql_db_query("tgmappe_forum","select * from pru_datos");
while($row = mysql_fetch_array($result)) {
<p>echo $row["nombre"];</p>
<p>echo $row["apellido"];</p>
<p>echo $row["email"];</p>
}
mysql_free_result($result);
?>
</body>
</html>
Código PHP:
<p>echo $row["nombre"];</p>