Search found 14 matches
- Fri Feb 13, 2004 6:09 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
OK, so I switched back to an old form I was using that didn't work. I connected the contact form to a php called form_emailer. I then gave the form an action (the php) and it actually does what it is supposed to do, sort of. I get an e-mail, from the form, but the info is missing. Looks something li...
- Fri Feb 13, 2004 4:10 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Fri Feb 13, 2004 3:05 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Fri Feb 13, 2004 12:44 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Fri Feb 13, 2004 12:42 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Fri Feb 13, 2004 11:34 am
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Fri Feb 13, 2004 11:10 am
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 7:10 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 6:58 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 6:29 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 6:06 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 5:54 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
- Thu Feb 12, 2004 5:51 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
Ok, here is the php called contact.php THANKS! <html> <head> </head> <body> <?php /* grabs the POST variables and puts them into variables that we can use */ $firstName=$_POST['firstName']; $lastName=$_POST['lastName']; $company=$_POST['company']; $email=$_POST['email']; $website=$_POST['website']; ...
- Thu Feb 12, 2004 5:43 pm
- Forum: PHP - Code
- Topic: Simple Forms with php
- Replies: 26
- Views: 2207
Simple Forms with php
Hello, I am trying to get a simple form to work on my website. I used the tutorial off of phpfreaks to create a form. I can see the form on my website, and I have the backend php to perform the POST method, but when I fill out the form, the page goes blank and nothing happens. Where am I supposed to...