I put several GETs in the same URL without any problems, all using BUTTON.
link using
<?php
$acao = $_GET['inst'];
$acao2 = $_GET['sala'];
$acao3 = $_GET['ano'];
$acao4 = $_GET['mes'];
?>
The next GET would be 5 checkbox inside a FORM. If I use <form action="confirmar.php" method="get">
then all OK, the http://localhost/teste/confirmar.php?values[]=18&values[]=28&values[]=38
result appears.
I just need the previous GETs at the same URL to send via email.
I complete the form action with previous GET.
<form action="confirmar.php?&inst=<?=$acao;?>&sala=<?=$acao2;?>&ano=<?=$acao3;?>&mes=<?=$acao4;?>&diahora=<?=$value;?>';"'
On the next page I enter the GET:
<?php
$acao = $_GET['inst'];
$acao2 = $_GET['sala'];
$acao3 = $_GET['ano'];
$acao4 = $_GET['mes'];
$acao5 = $_GET['diahora'];
?>
When I update the site and click on the button it acknowledges the errors
Notice: Undefined index: inst, room, year, month, and day
What could be happening?
If you can send the GET of checkboxes without using form, just by button, it can be also because they are not logged in users, only site visitors.