30/04/2011, 08:07
|
| | Fecha de Ingreso: febrero-2011
Mensajes: 83
Antigüedad: 13 años, 8 meses Puntos: 0 | |
Respuesta: Problema con un onClick
Código:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>MALDITOS PRODUCE /// Administrador: VER PROYECTOS</title>
<link href="../../css/admin.css" rel="stylesheet" type="text/css" media="screen" />
<link href="../../images/barra.gif"rel="icon" />
<link href="../../images/barra.gif" rel="shortcut icon" type="image/x-icon" />
<script language="JavaScript" type="text/javascript">
function pregunta(idvar,namevar)
{
if(confirm("Esta seguro") == 1 && isNuN(idvar) == 1)
document.location.href="borrar_proyecto.php?id_proyecto="+idvar+"&nombre_proyecto="+namevar;
else
document.location.href="proyectos.php";
}
</script>
</head>
<body>
<div id="contenedor">
<div id="logo">
<a href="../index.html"><img src="../../images/malditos_logo_peq.png" width="218" height="74" class="centrado" /></a>
</div>
<div id="menu">
<p><a href="proyectos.php" class="actual">Ver Proyectos</a></p>
<p><a href="../nuevos.html">Añadir Proyectos</a></p>
</div>
<div id="contenido">
<table>
<tr>
<th width="409">Nombre de proyecto</th>
<th width="90" class="centrar">Editar</th>
<th width="85" class="centrar">Eliminar</th>
</tr>
<?php
$connexio=mysql_connect("localhost","root","");
mysql_select_db("malditos",$connexio);
$consulta="SELECT * FROM proyectos";
$resultat=mysql_query($consulta);
while ($fila=mysql_fetch_assoc($resultat)) {
echo "<tr><td>".$fila["nombre_proyecto"]."</td>";
echo "<td class=\"iconos\"><a href=\"editar_proyecto.php?id_proyecto=".$fila["id_proyecto"]."\"> <img src=\"../../images/iconos/pencil.png\" title=\"Editar Proyecto\" alt=\"Editar Proyecto\" width=\"22px\" height=\"22px\" /></a></td>";
echo "<td class=\"iconos\"><a href=\"javascript:void(0);\" onclick=\"pregunta(".$fila["id_proyecto"].",".$fila["nombre_proyecto"]."\"> <img src=\"../../images/iconos/suprimir.png\" title=\"Borrar Proyecto\" alt=\"Borrar Proyecto\" width=\"22px\" height=\"22px\" /></a></td>";
echo "</tr>";
}
mysql_close($connexio);
?>
</table>
</div>
</div>
</body>
</html>
Lo he probado así pero no funciona. He cambiado algo que ne debía? |