
14/09/2004, 06:51
|
| | Fecha de Ingreso: julio-2004
Mensajes: 46
Antigüedad: 20 años, 7 meses Puntos: 0 | |
Por que este error? Por que falla en esa linea ? Cual es el problema?
Código:
Parse error: parse error, unexpected $ in /home/web1/public_html/note.php on line 45
Código:
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Pagina nueva 1</title>
</head>
<? include ("infobdc.php");
$linkp>
$link = mysql_connect($host, $userp, $pass);
mysql_select_db("$dbname",$link) or die (mysql_error("No se seleccion la base de datos"));
$_pagi_sql = "select * from noticias order by Fecha desc,Hora desc";
$_pagi_cuantos = 5;
include("paginator.inc.php");
while($row = mysql_fetch_array($_pagi_result)) {
echo "
<body>
<table width=413 border=0 cellspacing=0px>
<tr>
<td width=411 height=23 background=noticias.gif><font size=2 face=Arial, Helvetica, sans-serif>+
$row[Titulo]</font></td>
</tr>
<tr>
<td height=60 background=cuerpo-noticias-centro.gif>
<p><font size=2 face=Arial, Helvetica, sans-serif>Texto</font></p>
<p>asdasndasd</p>
</td>
</tr>
<tr>
<td height=22 background=cuerpo-noticias-inferior.gif>asdasdasd</td>
</tr>
</table>
}
?>
</body>
</html>
Gracias |