An HTML button looks like this:
<form name="HAHA" id="login_form" action="show.php" method="post">
The action
of this button is show.php
. That is just 1 action.
How would I use two actions?
<form name="HAHA" id="login_form" action="show.php","show2.php" method="post">
Does this work? Now I have 2 actions. Or do I have to use an Array?