Jump to content

Miks

New Members
  • Posts

    7
  • Joined

  • Last visited

    Never

Everything posted by Miks

  1. anyone with some kind of explanation?
  2. oh sorry i havent written that but i set it with the rest of thoes parameters above. $req is set -> $req = '1'
  3. $text = "Results from form:\n\n"; $space = ' '; $line = ' '; foreach ($_POST as $key => $value) { if ($req == '1') { if ($value == '') THEN I PUT HERE MY REDIRECT CODE ...and on the code goes $j = strlen($key); if ($j >= 20) $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.'');
  4. i wont open a new thread but i have a question about redirecting.... i wonder why my code doesnt redirect me... ....... foreach ($_POST as $key => $value) { if ($req == '1') { if ($value == '') {header("Location: http://www.mypage.com");} } ........... :confused:
  5. i wont open a new thread but i have a question about redirecting.... i wonder why my code doesnt redirect me... ....... foreach ($_POST as $key => $value) { if ($req == '1') { if ($value == '') {header("Location: http://www.mypage.com");} } ...........
  6. i tried like this but still not working...only the first two can send otherwise none :confused:
  7. Hi all!!!! I have one problem. Recently, i've developed a html page on which i made this <form method="post" action="sendmail.php"> <p><span class="style6 style19">Message:</span></p> <p> <input name="message" type="text" class="style15" /> Write something </p> <p><span class="style6 style19">Email:</span></p> <p> <input name="email" type="text" class="style15" /> Write your email </p> <p align="left"><span class="style6 style19">City</span></p> <p align="left"> <input name="city" type="text" class="style15" /> Write the name of the city </p> and the problem is on my sendmail.php page which goes like this <?php $email = $_REQUEST['email'] ; $message = $_REQUEST['message'] ; $city = $_REQUEST['city'] ; if (!isset($_REQUEST['email'])) { header( "Location: http://www....................." ); } elseif (empty($email) || empty($message) || empty($city) ) { header( "Location: http://www......................" ); } else { mail( "[email protected]", "Text", $message, $email, $city, "From: $email" ); header( "Location: http://www......................" ); } ?> the problem is that it will not send this if i state here -> mail( "[email protected]", "Text", $message, $email, $city, "From: $email" ); those three bolded,but only if i state message and email.... where is the logic in that...please i need help.if someone didn't understand i'm willing to explain it better!!!!
×
×
  • 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.