Jump to content

Elementary question; new to PHP redirect to contact.php instead of mainpage


Recommended Posts

Good evening,

 

I was wondering how I could get this page to redirect to the contact.php page which the form is on rather than the mainpage. Any little nudge I can get would be appreciated. Currently it is redirecting to the home page. I understand this is a rudimentary question, please understand I am new to PHP. My background is in moderate training with Flash AS3.

 

 

 

<?php

# Don't put anything above the previous line, not even blank space

 

# Copyright 2007, Thomas Boutell and Boutell.Com, Inc. You

# MAY use this code in your own projects. You MAY NOT

# represent this code as your own work. If you wish to share

# this code with others, please do so by sharing the

# following URL:

#

# http://www.boutell.com/newfaq/creating/email.html

 

# OPTIONAL: use Accountable to prefill the user's real name and

# email address. Requires that you install and configure

# Accountable first. If your site has no use for accounts elsewhere

# this isn't worth the trouble.

#

# If you ARE using Accountable, uncomment the "require" line below.

# You will probably have to fix the path to find login.php in the

# appropriate folder.

#

# See: http://www.boutell.com/newfaq/creating/accounts.html

 

#require "login.php";

 

#require '/home/boutell/html/tools/accountable/login.php';

 

# OPTIONAL: use my Captcha system to prevent automated

# abuse of the contact form. You'll need to install and

# configure the captcha code first.

#

# If you DO have my captcha installed, uncomment the "require" line

# below. You will probably have to fix the path to find captcha.php

# in the appropriate folder.

#

# See: http://www.boutell.com/newfaq/creating/captcha.html

 

#require "captcha.php";

#require '/home/boutell/html/tools/captcha/captcha.php';

 

# The person who receives the email messages

#$recipient = 'example@example.com';

$recipient = 'xxxxx@yahoo.com, xxxxxxx@gmail.com';

 

 

# Usually $_SERVER['SERVER_NAME'] is fine, but if you have an unusual

# hosting setup, you might need to set this manually to 'www.mysite.com'

#$serverName = $_SERVER['SERVER_NAME'];

 

$serverName = $_SERVER['SERVER_NAME'];

 

if ($_POST['send']) {

sendMail();

} elseif (($_POST['cancel']) || ($_POST['continue'])) {

redirect();

} else {

displayForm();

}

 

function displayForm($messages = array())

{

# Import $login object from accountable. If we're not using

# accountable this is null, which is not a problem

global $login;

 

# Re-display existing input so that the user doesn't have to enter

# things again when correcting a problem with just one field.

# Make sure ", <, >, etc. entered by the user are not treated

# as part of the HTML of the page

 

# If the email address and real name haven't been entered yet,

# check $_SESSION for them. If Accountable is in use, we can

# pre-fill these fields for the user.

$escapedEmail = htmlspecialchars($_POST['email']);

$escapedRealName = htmlspecialchars($_POST['realname']);

$escapedSubject = htmlspecialchars($_POST['subject']);

$escapedBody = htmlspecialchars($_POST['body']);

$returnUrl = $_POST['returnurl'];

if (!strlen($returnUrl)) {

# We'll return the user to the page they came from

$returnUrl = $_SERVER['HTTP_REFERER'];

if (!strlen($returnUrl)) {

# Stubborn browser won't give us a referring

# URL, so return to the home page of our site instead

$returnUrl = '/contact.php';

}

}

$escapedReturnUrl = htmlspecialchars($returnUrl);

# Shift back into HTML mode to send the form

?>

<html>

<head>

<?php

# Bring in Accountable style sheet if we are using Accountable.

# Your accountable chrome folder could be somewhere else,

# so fix the href if you need to

if ($login) {

?>

<link href="/accountable/chrome/login.css" rel="stylesheet" type="text/css">

<?php

}

?>

<title>Contact Us</title>

</head>

<body>

<?php

# Display Accountable login prompt if we are

# using Accountable

if ($login) {

$login->prompt();

# Fetch email address and real name from Accountable.

# We don't do this sooner because we want it to work

# even if the user just finished logging in

# (and $login->prompt() handles that situation)

if (!strlen($escapedEmail)) {

$escapedEmail = htmlspecialchars($_SESSION['email']);

}

if (!strlen($escapedRealName)) {

$escapedRealName = htmlspecialchars($_SESSION['realname']);

}

}

?>

<h4>Contact Us</h4>

<?php

# Shift back into PHP mode for a moment to display

# the error message, if there was one

if (count($messages) > 0) {

$message = implode("<br>\n", $messages);

echo("<h3>$message</h3>\n");

}

?>

<form method="POST" action="<?php echo $_SERVER['DOCUMENT_URL']?>">

<p>

<input

name="email"

size="64"

maxlength="64"

value="<?php echo $escapedEmail?>"/>

<br/>Your Email Address

</p>

<p>

<input

name="realname"

size="64"

maxlength="64"

value="<?php echo $escapedRealName?>"/>

<br/>Your Name

</p>

<p>

<input

name="subject"

size="64"

maxlength="64"

value="<?php echo $escapedSubject?>"/>

<br/>Subject

</p>

<p>

<i>Please enter your message below</i>

<textarea

name="body"

rows="10"

cols="60"><?php echo $escapedBody?></textarea>

</p>

<?php

# Display the captcha if we're using my captcha.php system

# and the user is not logged in to an Accountable account

if ((!$_SESSION['id']) && (function_exists('captchaImgUrl'))) {

?>

<p>

<b>Please help us prevent fraud</b> by entering the code displayed in the

image in the text field. Alternatively,

you may click <b>Listen To This</b> to hear the code spoken aloud.

</p>

<p>

<img style="vertical-align: middle"

src="<?php echo captchaImgUrl()?>"/>

<input name="captcha" size="8"/>

<a href="<?php echo captchaWavUrl()?>">Listen To This</a>

</p>

<?php

}

?>

<p>

<input type="submit" name="send" value="Send Your Message"/>

<input type="submit" name="cancel" value="Cancel"/>

</p>

<input

type="hidden"

name="returnurl"

value="<?php echo $escapedReturnUrl?>"/>

</form>

</body>

</html>

<?php

ob_start();

}

 

function redirect()

{

global $serverName;

$returnUrl = $_POST['returnurl'];

# Don't get tricked into redirecting somewhere

# unpleasant. You never know. Reject the return URL

# unless it points to somewhere on our own site.

$prefix = "http://$serverName/";

if (!beginsWith($returnUrl, $prefix)) {

$returnUrl = "http://$serverName/";

}

header("Location: $returnUrl");

}

 

function beginsWith($s, $prefix)

{

return (substr($s, 0, strlen($prefix)) === $prefix);

}

 

function sendMail()

{

# Global variables must be specifically imported in PHP functions

global $recipient;

$messages = array();

$email = $_POST['email'];

# Allow only reasonable email addresses. Don't let the

# user trick us into backscattering spam to many people.

# Make sure the user remembered the @something.com part

if (!preg_match("/^[\w\+\-\.\~]+\@[\-\w\.\!]+$/", $email)) {

$messages[] = "That is not a valid email address. Perhaps you left out the @something.com?";

}

$realName = $_POST['realname'];

if (!preg_match("/^[\w\ \+\-\'\"]+$/", $realName)) {

$messages[] = "The real name field must contain only alphabetical characters, numbers, spaces, and the + and - signs. We apologize for any inconvenience.";

}

$subject = $_POST['subject'];

# CAREFUL: don't allow hackers to sneak line breaks and additional

# headers into the message and trick us into spamming for them!

$subject = preg_replace('/\s+/', ' ', $subject);

# Make sure the subject isn't blank (apart from whitespace)

if (preg_match('/^\s*$/', $subject)) {

$messages[] = "Please specify a subject for your message.";

}

 

$body = $_POST['body'];

# Make sure the message has a body

        if (preg_match('/^\s*$/', $body)) {

$messages[] = "Your message was blank. Did you mean to say something? Click the Cancel button if you do not wish to send a message.";

}

# Check the captcha code if the user is NOT logged in to an account

if ((!$_SESSION['id']) && function_exists('captchaImgUrl')) {

if ($_POST['captcha'] != $_SESSION['captchacode']) {

$messages[] = "You did not enter the security code, or what you entered did not match the code. Please try again.";

}

}

if (count($messages)) {

# There were errors, so re-display the form with

# the error messages and let the user correct

# the problem

displayForm($messages);

return;

}

# No errors - send the email

mail($recipient,

$subject,

$body,

"From: $realName <$email>\r\n" .

"Reply-To: $realName <$email>\r\n");

# Thank the user and invite them to continue, at which point

# we direct them to the page they came from. Don't allow

# unreasonable characters in the URL

$escapedReturnUrl = htmlspecialchars($_POST['returnurl']);

ob_flush();

?>

<html>

<head>

<title>Thank You</title>

</head>

<body>

<h1>Thank You</h1>

<p>

Thank you for contacting us! Your message has been sent.

</p>

<form method="POST" action="<?php echo $_SERVER['DOCUMENT_URL']?>">

<input type="submit" name="continue" value="Click Here To Continue"/>

<input

type="hidden"

name="returnurl"

value="<?php echo $escapedReturnUrl?>"/>

</form>

</body>

</html>

<?php

}

?>

Link to comment
Share on other sites

  • 3 weeks later...
This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from 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.