Jump to content

Welcome to Geeks to Go - Register now for FREE

Need help with your computer or device? Want to learn new tech skills? You're in the right place!
Geeks to Go is a friendly community of tech experts who can solve any problem you have. Just create a free account and post your question. Our volunteers will reply quickly and guide you through the steps. Don't let tech troubles stop you. Join Geeks to Go now and get the support you need!

How it Works Create Account
Photo

Please help - how do I get PHP echo to show in popup?


  • Please log in to reply

#1
clueless_about_spyware

clueless_about_spyware

    New Member

  • Member
  • Pip
  • 3 posts
Hi there,

Right... where do I start? I have a htm page with a PHP script embedded. The PHP script's function is to capture all values entered by a visitor in a form and send it to my email address. I have put the form near the end of the page, so it is not visible when the page loads, unless you scroll down (I hope this makes sense). This script functions fine, but the echo that is returned (upon confirmation that the message is sent, the script "thanks" the visitor) is not placed at the top of the page. So people would have to scroll down to where they filled out the form in order to read the confirmation note. I would like to adapt the code so that the confirmation message is shown at the top of the page in a popup. I have pasted the PHP script in this message. Could someone please have a look at it and suggest what I would have to add in order for this to work?? :whistling:

MANY THANKS!!! Fran xx

<?php
require_once("config2.php");
require_once("templ_core1.php");
$page = new Page("template_skin1.htm");

if(isset($_POST["send"]))
{
$name = $_POST["name"];
$url = $_POST["url"];
$email = $_POST["email"];
$msg = $_POST["msg"];
$vword = $_POST["vword"];
$ip = $_SERVER['REMOTE_ADDR'];


if(empty($name))
{
echo(" <font face='Arial' size='2' color='#FF0000'><strong>- Enter your name please</strong></font><br />");
}

function CheckMail($email) {
if (eregi("^[0-9a-z]([-_.]?[0-9a-z])*@[0-9a-z]([-.]?[0-9a-z])*\.[a-z]{2,4}$", $email)) { return true; }
else { return false; }
}
if ((empty($email)) || (!CheckMail($email)))
{
echo " <font face='Arial' size='2' color='#FF0000'><strong>- Your email address is invalid</strong></font><br />";
}

if(empty($msg)){
echo(" <font face='Arial' size='2' color='#FF0000'><strong>- Please enter your comment</strong></font><br />");
}
if(empty($vword)){
echo(" <font face='Arial' size='2' color='#FF0000'><strong>- Please enter the verification code that you see in the picture</strong></font><br />");
}

if(!empty($name) && !empty($email) && !empty($msg) && !empty($vword))
{
	if($vword != "$v_w")
		{ echo "<font face='Arial' size='2' color='#FF0000'><strong>- Please enter the verification code that you see in the picture</strong></font>"; }
			if($vword == "$v_w")
			 	{
					if(CheckMail($email) == true)
					 {
$headers .= "From: ".$email."" .
"Subject: ".$subject."";

$messageproper =
"From: $name - $email \n" .
"------------------------- $yoursitename -------------------------\n\n" .
"Name: $name\n" .
"Rating: $url\n" .
"Email: $email\n\n" .
"Message: $msg\n\n" .
"Sender Ip: $ip" .

"\n------------------------------------------------------------\n";

mail("$receiver", $subject, $messageproper, "From: $name <$email>");
echo( '<font="arial" color="#003325">Thank you</font><br />

' );
				}
} 
}
}
else
{
?>
<form method="post" action="<?php $_SERVER['PHP_SELF']; ?>">
<?php
$page->replace_tags(array(
  "name" => "Name",
  "form_name" => "<input type=\"text\" name=\"name\" size=". $field_size ." />",
  "email" => "Email",
  "form_email" => "<input type=\"text\" name=\"email\" size=". $field_size ." />",
  "website" => "Rating",
  "form_website" => "<select name=\"url\" rows=". $textarea_row ." cols=". $textarea_cols .">
				  <option>1 star</option>
				  <option>2 stars</option>
				  <option>3 stars</option>
				  <option>4 stars</option>
				  <option>5 stars</option>
			  </select>",
  "message" => "Review",
  "form_message" => "<textarea name=\"msg\" rows=". $textarea_row ." cols=". $textarea_cols ."></textarea>",
  "vword" => "Verification word",
  "form_vword" => "<input type=\"text\" name=\"vword\" size=". $field_size ." />",
  "send" => "Send",
  "form_send" => "<input type=\"submit\" name=\"send\" value=\"Send Review\" />
  <input type=\"reset\" value=\"Reset Form\" /> 
  </form>"
));
$page->output();
?>
<?php 
}
?>

Edited by clueless_about_spyware, 25 October 2006 - 07:15 AM.

  • 0

Advertisements







Similar Topics

0 user(s) are reading this topic

0 members, 0 guests, 0 anonymous users

As Featured On:

Microsoft Yahoo BBC MSN PC Magazine Washington Post HP