动作URL表单

时间:2015-07-18 22:51:50

标签: php html wordpress forms

当我填写前4个标签时,会发生什么?"似乎"工作,但当我填写所有表格时,它表示无法找到行动中的页面。它有什么意义吗?为什么会这样?我可以POST的信息有限制吗?我的表格如下:

<form action="http://www.example.com/php/"     enctype="multipart/form-data" method="POST" class="dark-matter">

<fieldset><legend><b> Datos Cliente </b></legend><label> 

 <b> Email : </b> <label> <input name="mail" type="text"  /> </label>

<b> Página : </b> <label> <input name="pagina" type="text"  />  </label>

<b> Contraseña :  </b> <label> <input name="pass" type="text"  /> </label>

<b> Teléfono :  </b> <label> <input name="telefono" type="text"  /> </label>



<b> Producto : </b> <label> <input name="product" type="text"  /> </label>

<b>  Precio mínimo : </b> <label> <input name="preciomin" type="text"  />  </label>

<b> Precio a añadir : </b>  <label> <input name="precioplus" type="text"  />  </label>

 <b> Límite X max : </b>  <label> <input name="limitex" type="text"  /> </label>

<b> Límite Y max : </b>  <label> <input name="limitey" type="text"  /> </label>

 <b> Límite Z max : </b>  <label> <input name="limitez" type="text"  /> </label>

 <b> Límite X min : </b>  <label> <input name="limitexmin" type="text"  /> </label>

<b> Límite Y min : </b>  <label> <input name="limiteymin" type="text"  /> </label>

 <b> Límite Z min : </b>  <label> <input name="limitezmin" type="text"  /> </label>

 <b> Precio material(cm3) : </b>  <label> <input name="preciomaterial" type="text"  /> </label>

<b> Precio volumen(cm3) : </b> <label> <input name="preciovolumen" type="text"  />  </label>

<b> Colores (separar colores mediante comas) : </b> <label> <input name="Color" type="text"  />  </label>

<div class="buttonHolder">
<input type="submit" value="Continuar" />
</div>
</form>

这里有URL操作的代码:

PHP

$mail=$_POST['mail'];
$pagina=$_POST['pagina'];
$pass=$_POST['pass'];
$telefono=$_POST['telefono'];
$product=$_POST['product'];
$preciomin=$_POST['preciomin'];
$precioplus=$_POST['precioplus'];
$limitex=$_POST['limitex'];
$limitey=$_POST['limitey'];
$limitez=$_POST['limitez'];
$limitexmin=$_POST['limitexmin'];
$limiteymin=$_POST['limiteymin'];
$limitezmin=$_POST['limitezmin'];
$preciomaterial=$_POST['preciomaterial'];
$preciovolumen=$_POST['preciovolumen'];
$color=$_POST['Color'];
mysql_connect("localhost", "root", "");
mysql_select_db('wordpress');
$numero=mysql_insert_id();
$sql="INSERT INTO `wordpress`.`intermediarios` (`producto`,         `preciomaterial`, `preciovolumen`, `limitex` , `limitey`, `limitez`, `preciomin`, `precioplus` , `pagina`, `telefono`, `mail`, `pass` , `id`, `color`, `comentarios`, `limitexmin` , `limiteymin`, `limitezmin`, `intermediario`) VALUES ('$product','$preciomaterial', '$preciovolumen', '$limitex' , '$limitey', '$limitez', '$preciomin', '$precioplus' , '$pagina', '$telefono', '$mail', '$pass' , NULL , '$color', '$comentarios', '$limitexmin' , '$limiteymin', '$limitezmin' , '$numero')";
mysql_query($sql);

我正在使用wordpress,但我已在同一页面中创建了正常运行的表单。

0 个答案:

没有答案