私はこの2つのボタンを持っています、
<?php echo (($active_players >= 25 && !$active_players_check_bypass) ? $html->submit('Submit Registration', array('onclick'=>'return window.confirm("You have reached your maximum allowable players per team. In order to register this player, you must pay the $25.00 required overage fee in order to continue. Do you wish to continue with the registration?")')) : $html->submit('Submit Registration'));
echo $html->submit('Register Player using Registration Credits', array('id'=>'submitregistrationusingcredits')); // this will use the credits of the team
?>
最初のボタンはSubmit Registration
で、もう1 つのボタンはRegister Player using Registration Credits
です。どのボタンをクリックしたかを知る方法はありますか? 私はこれを使用CakePHP
していますが、私はこれに非常に慣れていません。どのボタンをクリックしたかを知る方法はありますか? ありがとう。