Please I need your help
on index.php there are these lines:
<form method="link" action="open.php">
<input type="submit" class="button2" value="Open New Ticket">
I need to transform it in this way
<form method="get" action="http://<?=$_SERVER?>/tech-support/open.php?s=<?=$seed?>">
<input type="submit" class="button2" value="Open New Ticket">
The issue is: while the field are correctly populated, once I click on button2, it calls correctly open.php BUT it doesn't pass any GET information to it in the URL line, nor the "?s=" nor the content of $seed that populates correctly the index.php form
In other words the method GET doesn't work. Why? How can I activate it please?