Advertisement
Guest User

Untitled

a guest
Nov 28th, 2014
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. <html>
  2.  
  3. $uid = $_GET['uid'];
  4. $cursos = $_POST['Cursos']
  5. if(is_null($cursos)){
  6. $cursos = 0;
  7. }
  8. $eventos = $_POST['Eventos']
  9. if(is_null($cursos)){
  10. $cursos = 0;
  11. }
  12. $vagas = $_POST['Vagas']
  13. if(is_null($cursos)){
  14. $cursos = 0;
  15. }
  16. ?>
  17. top.location = 'localhost/site/remover.php?email=<?PHP echo $uid;?>?cursos=<?PHP echo $cursos;?>?eventos=<?PHP echo $eventos;?>?vagas=<?PHP echo $vagas;?>';
  18.  
  19. <input type="checkbox" name="Cursos" />Cursos<br/>
  20. <input type="checkbox" name="Eventos" />Eventos<br/>
  21. <input type="checkbox" name="Vagas" />Vagas<br/><br/>
  22. <button onclick = "check()">Confirmar</button> <button onclick = "cancel()" >Cancelar</button>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement