2016-04-29 44 views
1

我想在填充文本框後在數據庫中插入數據。當我提交表格時,它什麼都不做,我不知道爲什麼。這是代碼:PHP表單的問題

<? 
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

注意:mysql已棄用,請使用PDO或mysqli。 –

+2

請花一些時間閱讀[爲什麼我不應該在PHP中使用mysql_ *函數?](http://stackoverflow.com/questions/12859942/why-shouldnt-i-use-mysql-functions-in-php )和[我怎樣才能防止SQL注入在PHP?](http://stackoverflow.com/questions/60174/how-can-i-prevent-sql-injection-in-php)。您的代碼非常過時,非常容易受到黑客攻擊。 – Oldskool

+0

我不相信你需要(或者應該!)使用'if'語句作爲'query'。 –

回答

1

試圖讓過去的錯誤與mysql_error()然後檢查是怎麼回事。 也許你沒有發送一些參數或在你的數據庫中有一些限制。 mysql_query()僅對更新/插入命令返回true/false。