Search found 14 matches

by ameesas
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...
by ameesas
Fri Feb 13, 2004 4:10 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

Got it to go through errors if I do not fill in certain fields and hit submit, it asks me to fill those in but when I hit submit after fill everything that is necessary, it goes to blank and now nothing in the address field of browser. So, I think this is progress, no?
by ameesas
Fri Feb 13, 2004 3:05 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

I have noticed the the items I fill out in the form are in the address line of the browser after I hit submit, although the page is blank. Curious.
by ameesas
Fri Feb 13, 2004 12:44 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

DO you think it is because it sits inside the frame? I try to open the contact_form in a new window, fill out a portion and then hit submit and the page goes blank.
by ameesas
Fri Feb 13, 2004 12:42 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

http://www.ameechapman.com/contact.phps

That is where you can find it. I know, this is strange...
by ameesas
Fri Feb 13, 2004 11:34 am
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

I added that in, still nothing...
by ameesas
Fri Feb 13, 2004 11:10 am
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

Morning, I have put a link on my links page to go the test.php. Something does come up, so maybe that will provide clues. Go to http://www.ameechapman.com/index2.html and hit the links page, at the bottom of that there is the text "test" Am I right in assuming after looking at that info pa...
by ameesas
Thu Feb 12, 2004 7:10 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

Page goes blank after hitting submit. Is this a weird problem or am I too much of a novice to deal with this?
Thanks again for your help.
by ameesas
Thu Feb 12, 2004 6:58 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

I'm sorry, I told you I was new at this. Trying to add the echos in and I am getting nowhere. Can you give me an example using some of the code above? I will past it in and we can try it.
Thanks.
by ameesas
Thu Feb 12, 2004 6:29 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

Do I need to do this on the server side or on my local page? Will this debug my page? as I am working on it ie. Server markups?
by ameesas
Thu Feb 12, 2004 6:06 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

I made those two changes, no errors came up when I made the changes, still no e-mail back when testing.
by ameesas
Thu Feb 12, 2004 5:54 pm
Forum: PHP - Code
Topic: Simple Forms with php
Replies: 26
Views: 2207

Oh, by the way, I don't have MySql, but I didn't want to take that out until I knew what I was doing. I only want the response e-mailed to me, not put in a database (unless I can post it to a Notepad type thing that will keep all of my responses in one file).

Thanks
by ameesas
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']; ...
by ameesas
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...