我有 2 页:
代码:
http ://emailser1.hostzi.com/default.php 包含:
<html>
<head><title></title></head>
<body>
<form action="formsend.php" method="post">
address: <input type="text" name="address">
<br/>
age: <input type="text" name="age">
<input type="submit" value="send">
</form>
</body>
</html>
http://emailser1.hostzi.com/dira/sentmail.php包含:
<?php
echo $_POST["address"];
echo "<br />";
echo $_POST["age"];
?>
现在我如何提交表单 index.html 并从 sendmail.php 中获取值并在 mirc 中回显?我只需要一个例子>.<