Ver Mensaje Individual
  #4 (permalink)  
Antiguo 01/07/2011, 00:50
matiasbmx
 
Fecha de Ingreso: febrero-2011
Mensajes: 124
Antigüedad: 13 años, 2 meses
Puntos: 4
Respuesta: Titulo de la web

Quiero hacer llamado a datos en tablas mysql, que en etiquetas de body las hago así:
Código PHP:
'.$row[descripcion].' 
`
le hago la consulta a la bd asi:
<?php
$id=$_GET["id"];
$connect=mysql_connect("localhost","an000304_matia s","Ma96101509");
mysql_select_db("an000304_sistemanoticias",$connec t);
$result=mysql_query("select * from noticias where id_noticia='$id'",$connect);
$totalregistros=mysql_num_rows($result);
?>
Lo puse asi el head:
<head>
<?php
$id=$_GET["id"];
$connect=mysql_connect("localhost","an000304_matia s","Ma96101509");
mysql_select_db("an000304_sistemanoticias",$connec t);
$result=mysql_query("select * from noticias where id_noticia='$id'",$connect);
$totalregistros=mysql_num_rows($result);
?>
<title><?php echo $row[titulo]; ?></title>
</head>