我有一個可以觸發paypal或其他鏈接的表單。如何通過PHP觸發表單動作?
如何通過PHP觸發這些操作?
HTML:
<form action="myphp.php" method="POST />
<input type="submit" value="paypal" name="action1" />
<input type="submit" value="other" name="action2">
</form>
myphp.php:
if($_POST["action1"]) {
//https://www.paypal.com/cgi-bin/webscr should trigger here
}
if($_POST["action2"]) {
//https://www.someotherwebsite.com/pay should trigger here
}
這個問題不是很清楚,你是什麼意思 「扳機」 是什麼意思? – MightyPork 2015-02-07 14:39:34