Jump to content

m4anm4

New Members
  • Posts

    2
  • Joined

  • Last visited

m4anm4's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. This is the original working robot <form action="sorgente_esempio1.php" method="post"> <label>Nome: <input type="text" name="nome" /> </label><br /> <label>Cognome: <input type="text" name="cognome" /> </label><br /> <input type="submit" value="Vai" /> </form> <?php $firstname = $_POST ['nome']; $lastname = $_POST ['cognome']; echo "Thanks mate, $firstname $lastname!"; ?> Please help!
  2. Hello to everyone, is too late to ask you all a suggestion about this topic? I need an help to generate an automatic answer to an email once completed the form, I have wrote only this little part <form action="source_example1.php" method="post"> <label>Name: <input type="text" name="name" /> </label><br /> <label>Surname: <input type="text" name="surname" /> </label><br /> <input type="submit" value="Go" /> </form> <?php $firstname = $_POST ['name']; $lastname = $_POST ['surname']; echo "Thanks mate, $firstname $lastname!"; ?> Now, how send an email to me or someone else with that echo answer? Thanking you all Regards
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.