He diseñado un formulario y en un campo le he añadido un datepicker con jqueryui (el input type="date" me da error en algunos navegadores), no obstante, cuando envío la info por POST aunque llega correctamente (he hecho un echo para ver que llegaba) no se inserta correctamente en la base de datos. Aparece de la siguiente manera: 0000-00-00. Me imagino que tendrá que ver con el formato de fecha, pero no acierto a hacerlo bien. Os dejo el formulario y el php.
Código HTML:
<script src="ckeditor/ckeditor.js"></script> <link rel="stylesheet" href="//code.jquery.com/ui/1.11.0/themes/smoothness/jquery-ui.css"> <script src="//code.jquery.com/jquery-1.10.2.js"></script> <script src="//code.jquery.com/ui/1.11.0/jquery-ui.js"></script> <link rel="stylesheet" href="https://code.google.com/p/jquery-ui/source/browse/branches/labs/datepicker2/themes/base/jquery.ui.datepicker.css?r=3875"> <script> $(function() { $( "#datepicker" ).datepicker(); }); </script> </head> <body> <div id="cuerpo"> <h2>Insertar una nueva noticia</h2><br> <form action="actualizarnoticias.php" method="post" enctype="multipart/form-data" name="noticias" id="modulonoticias"> <label for="ntitular"></label> <input type="text" name="ntitular" id="ntitular" accesskey="t" class="grande" tabindex="1" placeholder="Titular"> <br> <br> <label for="naut"></label> <input class="grande" type="text" name="naut" id="naut" accesskey="a" tabindex="2" placeholder="Autor"> <br> <br> <label for="ndat"></label> <input class="grande" type="text" name="ndat" id="ndat" accesskey="a" tabindex="3" placeholder="Data"> <br> <br> <input type="text" id="datepicker" placeholder="dd/mm/aaaa" name="fecha" tabindex="4"> <br> <br> <textarea accesskey="s" tabindex="5" name="articulo">Escribe tu artículo...</textarea> <script type="text/javascript"> CKEDITOR.replace( 'articulo' ); </script> <br><br> <input type="file" name="nfoto" id="foto" accesskey="f" tabindex="6"> <br> <br> <input type="submit" name="guardar" id="guardar" value="Guardar" accesskey="g" tabindex="7"> <br> <br> </form>
Código PHP:
include('includes/conexiones.php');
if($_POST["ntitular"]){
$ntit=$_POST["ntitular"];
$naut=$_POST["naut"];
$ndata=$_POST["ndat"];
$nfecha=$_POST["fecha"];
$nart=$_POST["articulo"];
$nfoto=$_FILES["nfoto"]["name"];
$nfototemp=$_FILES["nfoto"]["tmp_name"];
copy($nfototemp, "imagenes/noticias/".$_FILES["nfoto"]["name"]);
$sql="INSERT INTO noticias(titular, autor, data, texto, fecha, imagen) VALUES ('$ntit','$naut','$ndata','$nart','$nfecha', '$nfoto')";
mysql_query($sql) or die("Error al intentar añadir una noticia: ".mysql_error());
header("Location:admin_noticias.php");
}