在提交表单之前通过脚本进行数据库调用

时间:2014-02-19 16:49:18

标签: php mysql

我的表格如下:

<form name="test" action="myscript.php">
  <input type="hidden" name="secretname" value="someval">
  <input type="hidden" name="Language" value="English">
</form>

和myscript.php

<?php 
   //do some database stuff...
   //and then send data to otherservice.php...
   header("Location: http://someotherservice.com/checkmydata");
?>

如何以安全的方式完成这项工作。特别没有做ajax?感谢

0 个答案:

没有答案