0
//variavel recebe de input html
$ssid = @$_POST['user'];
if(isset($_POST['enviar'])
{
//deveria printar valor na tela
echo $ssid;
}
The variable $ssid
receives an input value, but when I click on the send button the value of the variable goes along with the page refresh
as save the value of the variable to use after page refresh?
tried to save it in $_SESSION?
– Arthur Luiz