Posts by Ricardo Rodrigues • 1 point
2 posts
-
0
votes1
answer170
viewsA: Can I use $_GET with $_SESSION?
I assume you already know how a session works. So you’ll practically change your $_POST for $_SESSION (post in this case will not work, as it is only used in Formularios Ubmit) Remember that to use…
phpanswered Ricardo Rodrigues 1 -
0
votes2
answers81
viewsA: PHP form without email field
The configuration of PHPMailer apparently correct, however the variables that define the sender’s name and email $mail->Setfrom are not defined: $eml and $nom , at least in the code you posted…