datos me da el siguente error:
Objecto no localizado!
El URL solicitado no ha sido localizado en este servidor. Si usted tecleó el URL manualmente, por favor revise su ortografía y vuélvalo a intentar.
Si usted cree que esto es un error del servidor, por favor comuníqueselo al administrador del portal.
Error 404
localhost
Apache/2.4.10 (Win32) OpenSSL/1.0.1i PHP/5.6.3
Os dejo ambos archivos para ver si alguien sabe que e echo mal:
Código HTML:
Ver original
<html lang="es"> <head> <meta http-equiv="content-type" content="text/html;charset=utf-8" /> <link href="estilo.css" type="text/css" rel="stylesheet" /> </head> <div id="todo"> <div id ="contenedor"> <div id ="cabecera"> <div id="logo"> <ul> </ul> </div> </div> <div id="menu"> <div id="menu"> <ul> </ul> </div> </div> <div id ="panel"> </div> <div id ="contenido"> <table> <tr> <form action=”reg.php” method=”post” name=”datos”> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> <tr> </tr> </table> <input type="submit" value="Enviar este formulario" /> </form> </div> </div> </div> </body> </html> </body> </html>
Código PHP:
Ver original
<?php //Esta linea es para incluir el archivo con las variables include “variables.php” */ /* CONECTAR CON BASE DE DATOS **************** */ /* ********************************************** */ /* CONECTA CON LA BASE DE DATOS **************** */ /* ********************************************** */ //REALIZAR CONSULTA $sql = “INSERT INTO usuarios VALUES (NULL, '”.$_POST[‘nombre’].”‘, '”.$_POST[‘nick’].”‘, '”.$_POST[‘apellidos’].”‘, '”.$_POST[‘contraseña’].”‘ )”; if (! $result){ }else {echo “<center><font color=’RED’>DATOS INSERTADOS CORRECTAMENTE</font><a ref=’"/paginas/prueba/index.html"’>Volver</a>'”; } ?>
Gracia a todos por adelantado.