Posts by Neylor Cesar • 36 points
2 posts
-
1
votes2
answers467
viewsA: How to make a query using variables with PHP
Example with page reload. Let’s assume you’re in the index.php ok file. 1°) Part index.php file (html), button creation (Update) <input type="button" id="submitUser" value="Atualizar"…
-
1
votes3
answers670
viewsA: Alert Ao Enviar Email com Sucesso
In PHP replace: mail($to,$email_subject,$email_body,$headers); //redirect to the 'thank you' page header('Location: index.html');} For: $send_mail = mail($to,$email_subject,$email_body,$headers);…