Jump to content

briciusaz

New Members
  • Posts

    6
  • Joined

  • Last visited

    Never

Profile Information

  • Gender
    Not Telling

briciusaz's Achievements

Newbie

Newbie (1/5)

0

Reputation

  1. Really need help here...
  2. Yes thats right- while still using the code I have as it gives me the flexible to put whatever I have in the form.
  3. Pretty please help me? ??? ???
  4. can anyone help me out??
  5. I don't want it to be my email or whatever that is up there now but I want that to be changed from in the form that user is typing. Like; From: Subject: etc.. That From text input should be the email address I am seeing from instead of what I have up there.
  6. I need someone to help me out by keeping this code but one part of this php script. Right now I am getting the header of from in my email address but I do not want that- I prefer from person who is filling ou tthe form. The main reason I want to keep this script is because I can put whatever I want in form and still get it in email. Just need to chang ethe from part instead of my email address. HELP!! Thanks <?php $subject = 'CONTACT FORM'; $emailadd = 'email@email.com'; $url = '../thankyou.html'; $req = '1'; $text = "Results from form:\n\n"; $space = ' '; $line = ' '; foreach ($_POST as $key => $value) { $j = strlen($key); if ($j >= 30) {echo "Name of form element $key cannot be longer than 30 characters";die;} $j = 20 - $j; for ($i = 1; $i <= $j; $i++) {$space .= ' ';} $value = str_replace('\n', "$line", $value); $conc = "{$key}:$space{$value}$line"; $text .= $conc; $space = ' '; } mail($emailadd, $subject, $text, 'From: '.$emailadd.''); echo '<META HTTP-EQUIV=Refresh CONTENT="0; URL='.$url.'">'; ?>
×
×
  • 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.