me sale estos errores en la parte superior de la pagina.
Código HTML:
Notice: Undefined index: id in C:\xampp\htdocs\proyecto_flash\index.php on line 4 Notice: Undefined index: id in C:\xampp\htdocs\proyecto_flash\index.php on line 5 Warning: mysql_fetch_array() expects parameter 1 to be resource, boolean given in C:\xampp\htdocs\proyecto_flash\index.php on line 7
Código PHP:
<?php
require_once ("conexion.php");
$sql="select h.foto,c.texto from header as h, contenido as c
where h.id_menu=".$_GET["id"]."
and c.id_menu=".$_GET["id"]."";
$res=mysql_query($sql,$con);
if($reg=mysql_fetch_array($res))
{
$header=$reg["foto"];
$contenido=$reg["texto"];
}
?>
Código PHP:
<?php
$sql= "select * from menu";
$res= mysql_query ($sql,$con);
while ($reg= mysql_fetch_array($res))
{
?>
<li><a href="index.php?id=<?php echo $reg ["id_menu"];?>" class="url"> <?php echo $reg ["texto"];?> </a></li>
<?php
}
?>
Código PHP:
<div class="indent_img"><img alt="" src="images/<?php echo $header;?>">