請幫我,,我很困惑,, 我想,當我打開頁面後,頁面自動直接提交自動點擊提交頁面加載形式PHP
<form method="POST">
<input type="text" name="url" value="google.com">
<input type="max" name="max" value="9999">
<input type="submit">
</form>
<?php
require("autovisitor.class.php");
$url = "google.com";
$max = 999;
for($i = 1; $i < $max+1; $i++) {
$class = new autovisitor($url);
echo $i.". SUKSES - [".$class->jalankan()."]<br>";
}
?>
您是不是要在特定時間段_automatically_之後提交表格? – user5173426
[自動提交表單的麻煩]的可能的重複(http://stackoverflow.com/questions/6246731/trouble-with-an-auto-submitting-form) – 151291