Hola que tal tengo un pequeño problema que me anda matando en un fichero en php aquí os dejo la duda y lo que quiero hacer.
Quiero saber como tengo que hacer para que en mi página inicial index.php añadindo la extension en php siguiente:
<?php
switch($seccion) {
default:
include('home.php');
break; case "all":
include('all.php');
break; case "categoria":
include('categoria.php');
break; case "animaciones":
include('anim.php');
}
?>
- Me salga los juegos en un popup y no en otra ventana, un ejemplo de una web que lo tiene en formato popup http://www.viciat.com
Aquí os dejo el codigo del archivo home.php en el cual hay que cambiar el codigo para poderlo asi.
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Documento sin título</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<META content="all | index | follow" name=robots><link rel="stylesheet" href="images/style.css" type="text/css"></head>
<font face="Verdana" style="font-size: 8pt" color="#FFFFFF">
<body bgcolor="#505563">
<TABLE borderColor=#505563 cellSpacing=0 cellPadding=0 width=420
bgColor=#ffffff border=0 height="98" id="table1">
<TBODY>
<TR>
<TD class=pag bgColor=#505563 height="90"><?
$mostrar="4";
include("conexio.php");
$sql = "SELECT * from juegos order by id desc" ;
$resp = mysql_query($sql);
$i = 0;
while ($row = mysql_fetch_array($resp)) {
if ($i <= $mostrar) {
echo "
<table cellspacing=0 cellpadding=0
align=center border=0 bordercolor=505563 width=420>
<tr><td>
<table cellspacing=0 cellpadding=6
align=center width=380><tr><td valign=top width=100>
///////aquí es donde lo hay que modificar creo pero me da errores
<a target=top_ href='jugar.php?id=".$row["id"]."'>
<img width=100 height=70 src='".$row["urlimagen"]."' border=0></a><br>
</td><td valign=top width=380>
x <a target=parent_ href='jugar.php?id=".$row["id"]."'>
<font color=#FFFFFF>".$row["nombre"]."
/////// Muchas gracias por su tiempo
<br>Descripción</b>: ".$row["descripcion"]."<br>
<b>Categoria</b>: ".$row["categoria"]."
</td></tr></table>
</td></tr></table><br>
";
$i++;
}
}
mysql_close
($link);
?>
</font></span></TD>
</TR>
</TABLE>
</font>
</body>
</html>
-Muchas gracias espero su respuesta.
Manu