May 21, 2025, 10:28:29 PM

This week's Club Pogo challenges!
Anagrams : Spell 450 3-letter words this week!
Mahjong Garden HD : Win 20 games this week!
Snowbird Solitaire : Score 90000 points this week!

Main Menu

Post reply

The message has the following error or errors that must be corrected before continuing:
Warning: this topic has not been posted in for at least 120 days.
Unless you're sure you want to reply, please consider starting a new topic.
Note: this post will not display until it has been approved by a moderator.
Other options
Verification:
Please leave this box empty:
Shortcuts: ALT+S post or ALT+P preview

Topic summary

Posted by fatkid
 - February 11, 2004, 08:30:14 AM
Or you can just comment out the header call and instead after the PHP ?> Start writing your HTML that you want displayed... It will also work that way...
Posted by fatkid
 - February 11, 2004, 08:27:22 AM
<?php
header("Location: http://www.example.com/");
?>

Try adding the php tag to the <? ... From what I've looked at online it seems that, that is the only thing that is different from that script to the PHP manual...
Posted by JeffCoKid
 - February 10, 2004, 07:52:23 PM
Here is the code I am currently using....
_______________________________________

<?
 
 $message= "";

 //steps through each field past through the post headers and compile them into a message string.
 for(reset($HTTP_POST_VARS); list($name, $value) = each($HTTP_POST_VARS);)
 {
     $message .= $name.": ".$value."\r\n";  // the "." concatanates strings together.
 }

 //send out the email.  PARAM1=Send email to.  PARAM2=Subject. PARAM3=Email body message. PARAM4=email headers (In this case specifying what it should do if someone attempts to reply to the email-it just sends it right back to jeffcokid@bresnan.net)  
 mail("jeffcokid@bresnan.net", "Quill Signature Order", $message, "From: applicant \r\nReply-To: jeffcokid@bresnan.net\r\n");

 //This is where you want to redirect to after the form has been submitted...
 header("Location: http://www.jeffcokid.com/quillpay.htm");
 
?>
Posted by JeffCoKid
 - February 10, 2004, 07:42:02 PM
Wait wait.... I am receiving the email with the correct information. I figured that one out. GENUIS!!!

lmao...

But now... the redirection... that's the problem.
Posted by JeffCoKid
 - February 10, 2004, 07:25:21 PM
Okay so I am a complete dumbass... I cannot get this script to work for the life of me. I just ran through my form and put in values (value="") and left it blank like that. Go ahead and laugh lol... I am just not any good at this crap.

- Jeff
Posted by ImRicherThanUAll
 - February 10, 2004, 07:17:25 PM
Partying is the fun part in collage fyi lmao
Posted by JeffCoKid
 - February 10, 2004, 07:14:29 PM
ok, home for the evening.... no, havent been to college yet as I am a Junior in HS.
Posted by ImRicherThanUAll
 - February 10, 2004, 05:49:10 PM
Those were the days but im confused how did i pull of a 3.6 all the way through lmao ;D ;D
Posted by fatkid
 - February 10, 2004, 05:45:24 PM
 ;D
Posted by DJ
 - February 10, 2004, 05:31:42 PM
lmao Fatkid found another victim
Posted by fatkid
 - February 10, 2004, 04:57:30 PM
you mean you went to college?

col·lage (k-läzh, k-)
n.
An artistic composition of materials and objects pasted over a surface, often with unifying lines and color.

http://dictionary.reference.com/search?q=collage

College is an institute for higher learning... ;-)  Guess you just partied those years right through... lol  ;D
Posted by ImRicherThanUAll
 - February 10, 2004, 04:52:41 PM
sry lol im not a real genius with computers but i did go to collage for csomthing lol... i forgot what it was tho lol
Posted by JeffCoKid
 - February 10, 2004, 04:45:49 PM
I figured it would be the value tag


Thanks again. I will hopefully get this working this evening.

Have a good one fatkid. I really appreciate all this.  ;D
Posted by fatkid
 - February 10, 2004, 04:09:33 PM
<tr>
<td width="150" nowrap>Font Color One</td>
<td width="150">
<input type="text" name="Color1" value="" size="5" maxlength="6">
</tr>

Easy as pie.. Then whatever the use inputs into the text field will be record as the value of Color1
Posted by JeffCoKid
 - February 10, 2004, 03:22:58 PM
Yawwwnn... I would have gotten back to you sooner on this but I was napping.


Thanks a lot fatkid! I will take a look into this this evening. I will be away for a few hours... gotta go back to school tonight as its a work night for FBLA... and we reallllllly need to get our site going as it is due on the 28th lol and we have the basic design. (the design on jeffcokid.com is what we are using just for saving time... but when we go to nationals it will probably change.)

How would I insert input values into my form?