²»Öªµ½ÎÒ´íÔÚʲôµØ·½?
Õâ¸öÊÇtest1.php<form method="POST" action="test2.php" name='form1' target="_blank">
<input type="text" name="s1" value='123'>
<input type="submit" name="s2" value=123>
</form>
Õâ¸öÊÇtest2.php
<?php
echo $s1;
?>
ÇëÎÊΪʲôÎÒµÄtest2.phpÀïÃæÊ²Ã´¶¼²»ÄÜÏÔʾ? test2.php¸ÄΪ
<?php
$s1=$_POST['s1'];
echo $s1;
?> лл!ÎÊÌâÒѾ½â¾ö.
Ò³:
[1]