我的表格如下:
<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?感谢