zipzap Posted October 1, 2011 Report Share Posted October 1, 2011 Eu tenho o seguinte código:<form method="post" action="" target="self"> <table> <tr> <td><span id="qualquer"></span></td> <td align="center"><input name="Buy" type="submit" value="Buy" ></td> <td align="center"><input name="Cancel" type="submit" value="Cancel"></td> </tr> </table> </form>O que eu quero fazer é quando clicar no botão cancel alterar 2 valores em 2 variáveis de sessão.Como fazer? Quote Link to comment Share on other sites More sharing options...
0 Robson C. Posted October 3, 2011 Report Share Posted October 3, 2011 <?php session_start(); $_SESSION['Buy'] = $_POST['Buy']; $_SESSION['Cancel'] = $_POST['Cancel']; ?> <form method="post" action="" target="self"> <table> <tr> <td><span id="qualquer"></span></td> <td align="center"><input name="Buy" type="submit" value="Buy" ></td> <td align="center"><input name="Cancel" type="submit" value="Cancel"></td> </tr> </table> </form> Quote Link to comment Share on other sites More sharing options...
Question
zipzap
Eu tenho o seguinte código:
O que eu quero fazer é quando clicar no botão cancel alterar 2 valores em 2 variáveis de sessão.Como fazer?
Link to comment
Share on other sites
1 answer to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.