PHP表单的问题

时间:2016-04-29 16:33:03

标签: php html

我正在尝试在填充文本框后在数据库中插入数据。当我提交表格时,它没有做任何事情,我不知道为什么。这是代码:

<?
include("../connect537.php");
include("seguridad501.php");
include("funciones.php");
$zona = 'nuevapagina';

if ($_POST["ins_art"]) {
    echo "Pruebas";

    if (mysql_query("INSERT INTO landing_articulos (id_articulo, nombre, url, h1, texto, title, description, keywords, visitas, valido) VALUES (NULL, '" . $_POST["ins_nom"] . "', '" . urls(utf8_encode($_POST["ins_nom"])) . "', '" . $h1 . "', '" . $texto . "', '" . $title . "', '" . $description . "', '" . $keywords . "', '0', '1');")) {
        $idins = mysql_insert_id();
        redirige('editar_nuevapagina.php?id=' . $idins);
    }
}
if ($_GET["act"] == 'eliminarart' && $_GET["id"] != '') {
    mysql_query("DELETE FROM `landing_articulos` WHERE `id_articulo` = " . $_GET["id"] . " LIMIT 1");
    redirige('nuevapagina.php');
}
?>


<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//ES" "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><?=$nomproyecto?></title>
      <link rel="stylesheet" type="text/css" href="estilos_contenidos.css"/>
      <link rel="stylesheet" type="text/css" href="estilos.css"/>
      <script language="javascript">
         function eliminar_art(id){
         var mensaje='Deseas eliminar este articulo?' ;
         eliminar=confirm(mensaje);
         if (eliminar)
         document.location='nuevapagina.php?act=eliminarart&id='+id;
         }
      </script>
   </head>
   <body>
      <?
         include("header.php");
         ?>
      <div id="contenidototal">
         <fieldset>
            <div style="float:left; margin-right:25px;">
               <p class="titulos">Landings Art&iacute;culos</p>
            </div>
            <div style="float:left; width:550px;margin-top:5px;">
               <form action="" method="POST" id="insertar" name="insertar">
                  <p><strong>Nuevo Art&iacute;culo</strong> - Nombre: <input name="ins_nom" type="text" class="texto" id="ins_nom" /> <input name="button2" type="submit" class="texto" id="button2" value="Insertar" /><input name="ins_art" type="hidden" value="1" /></p>
               </form>
            </div>
            <div style="clear:both"></div>
            <p class="texto">&nbsp;</p>
            <?
               if(mysql_num_rows($c1=mysql_query("SELECT id_articulo, nombre, url, valido FROM landing_articulos WHERE 1 ORDER BY valido DESC, nombre ASC"))){

                while($f1=mysql_fetch_array($c1)){
               ?>
            <div style="float:left; width:32%; padding-left:0px; color:#ef5000; font-weight:bold; margin:5px;">
               <p><a href="/ce-<?=$f1["url"]?>_<?=$f1["id_articulo"]?>.html" target="_blank"><strong><?=$f1["nombre"];?></strong></a> <a href="editar_nuevapagina.php?id=<?=$f1["id_articulo"]?>"><img src="imagenes/lapiz.png" width="15" height="15" border="0"/></a> </a> <a href="javascript:eliminar_pro('<?=$f1["id_articulo"]?>');"><img src="imagenes/delete.png" width="15" height="15" border="0"/></a> <? if($f1["valido"]=='0')echo ' - SIN VALIDAR';?></p>
            </div>
            <?
               }
                }
               ?>
         </fieldset>
      </div>
   </body>
</html>

所以,当我尝试提交它时,不要工作它没有任何东西。我使用了另一个与其他参数相同的页面,它完美地工作,所以我不知道为什么。你能帮我解决这个问题吗?我已经遗漏了一段代码,因为它会很长。

非常感谢

1 个答案:

答案 0 :(得分:1)

尝试使用mysql_error()获取最后一个错误,然后检查发生了什么。 也许你没有发送一些参数或在数据库中有一些约束。 mysql_query()仅对update / insert命令返回true / false。