1
私はIステートメントを持っています。私が言うことができるようにしたいphpボタンにif文を添付する方法は?
<input type="submit" name="submit" id="submit" value="Submit" />
:
if($game_set->issue_challenge()){echo "test";}else {"test failed";}
と私がボタンを持っているif the button isset, then $values = $_POST['gamelist'] and if($game_set->issue_challenge()){echo "test";}else {"test failed";}
私は
if (isset($_POST['Submit'])) {
$values = $_POST['gamelist']
if($game_set->issue_challenge()){echo "test";}else {"test failed";}
}
任意のアイデアのようなものを考えていましたか?
おかげであなたはPOSTフォームにしていると仮定すると、
... – Neal
いくつかの詳細ください。 – Patrioticcow