Web Hosting Forum | Lunarpages


*
Welcome, Guest. Please login or register.
Did you miss your activation email?



Login with username, password and session length
May 21, 2012, 04:36:25 AM

Pages: [1] 2   Go Down
  Print  
Author Topic: Forms that get emailed  (Read 2281 times)
Livin73
Newbie
*
Offline Offline

Posts: 2


« on: June 18, 2004, 11:50:22 PM »

I'm trying to figure out how to make a form that someone can fill out and then when they hit the Submit button, it would be emailed to me. I know how to do this in Frontpage, but I'm really trying to use Dreamweaver now and I haven't figured out an easy way to do this. Any ideas?
Logged
Jax
Spaceship Captain
*****
Offline Offline

Posts: 120


WWW
« Reply #1 on: June 19, 2004, 01:48:44 AM »

PHP has the simplest way to do it that i've come across...  I write code out though, don't generally get DW to do it for me (I like knowing what's going on!!)  

Are you able to research PHP a little?
Logged

Jax Out.
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #2 on: June 19, 2004, 05:37:41 AM »

OK, save the following file as contactscript.php and save it to the same place you  are going to have your form.
Make all the necessery changes to the code first, like put your email address and the subject line, look in the code below:

Code:
<?php

// headers for the email listed below

$headers .= "From&#58; $name <$email>\n";  // your email client will show the person's email address like 

normal
$headers 
.= "Content-Type&#58; text/plain; charset=iso-8859-1\n"// sets the mime type
$recipient "youremail@yourdomain.com"// enter YOUR email address here
$subject "Put your text here"// this is the subject of the email

$msg wordwrap&#40; $msg, 1024 &#41;;

mail&#40;$recipient, $subject, stripslashes&#40;$msg&#41;, $headers&#41;; // the mail&#40;&#41; function sends the message to 

you

//Once the data is entered, redirect the user to give them visual confirmation
   
header&#40;"location&#58; thanks.php"&#41;;
?>


now copy the following text to another file and save it as thanks.php
the user will be taken to the page once they submit their form, once again change the text in here to suit your site:

Code:
<h1>Thanks!</h1>
<p> If you made it here, it means we've gotten your email. Someone will be in contact with you as soon as the website is up and running. Please dont forget to tell your friends, and tell them to include your email when sending us an email from the site.<br />
Thanks!</p>
<p><strong>Your sig </strong></p>
<p>Go back to <a href="http://www.yourdomain.com">yourdomain.com</a></p>


and then copy the following code into your html file where you want the form to appear:


Code:
<form name="form" method="post" action="contactscript.php">
  <table width="400" border="0" align="center" cellpadding="2" cellspacing="2" summary="">
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your Name: </span></td>
      <td width="200" valign="top" align="left">
        <input type="text" name="name" size="25" maxlength="200" />
      </td>
    </tr>
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your Email:</span></td>
      <td width="200" valign="top" align="left">
        <input type="text" name="email" size="25" maxlength="100" />
      </td>
    </tr>
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your BoroBiroon Username &amp; <br>
      Your Comments: </span></td>
      <td width="200" valign="top" align="left">
        <textarea name="msg" cols="25" rows="4"></textarea>
      </td>
    </tr>
    <tr>
      <td width="200" valign="top">&nbsp;</td>
      <td width="200" valign="top" align="left">
        <input type="reset" name="Reset" value="Reset" />
        <input type="submit" name="Submit" value="Submit" />
      </td>
    </tr>
  </table>
</form>


dont change any of the settings unless u know what ur doing
let me know if this works, this really is the EASIEST way to do it, i dont know of any other way to do it and i know that php is the easiest and best and most reliable Surprised)
good luck
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
Livin73
Newbie
*
Offline Offline

Posts: 2


« Reply #3 on: June 21, 2004, 08:26:56 PM »

I tried the PHP script above. WHen I hit submit, I get the confirmation just fine and I even get an email. But, in the email, instead of the form, it's just blank except for a period. ANy ideas why a period is getting sent instead of my form?
Logged
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #4 on: June 22, 2004, 06:00:20 AM »

well
the NAME field will be displayed as the WHO FROM
basically if the persons name is John smith, then u will get an email from john smith, it wont show up in your email text field, just on the subject line
and their email address will be in the email field, again not in the email  text field

and as for the dot, are u putting a dot in the other comments box?
cos the other comments box is what u will see in ur email field

you can add more fields to this form or u cann changed it around so that everything is displayed in ur email
let me knw, ill help u
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
aliadeel
Space Explorer
***
Offline Offline

Posts: 6


WWW
« Reply #5 on: June 23, 2004, 02:45:12 PM »

Hi dude, first of all I need to say this that Lunar pages is the best hosting service i've seen so far. Apart from that I'm having a few problems with the code u specified, seems like its a really cool script, but for some reason i donno why i cant get it to work. When the form is filled and submitted it gives me this error:

"Internal Server Error
The server encountered an internal error or misconfiguration and was unable to complete your request.
Please contact the server administrator, root@nasa.lunarpages.com and inform them of the time the error occurred, and anything you might have done that may have caused the error.
More information about this error may be available in the server error log.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
--------------------------------------------------------------------------------
Apache/1.3.29 Server at nasa.lunarpages.com Port 80"

When I check the error log, it gives me this error "Premature end of script headers" , i.e. the contactscript.php  Sad

"http://nasa.lunarpages.com/~bluesu4/sample/images/Form/form.htm"
This is my sample script as described by you. Please have a look at it and lemme know if u can help me out. Yr help will be highly appreciated.

P.S. Yr site "http://www.borobiroon.com/"  Applause is really amazing. I mean u've really done a LOT of work on it. So by the way mind if i ask u where u from?

Waiting for your reply.


Quote from: purepersian
OK, save the following file as contactscript.php and save it to the same place you  are going to have your form.
Make all the necessery changes to the code first, like put your email address and the subject line, look in the code below:

Code:
<?php

// headers for the email listed below

$headers .= "From&#58; $name <$email>\n";  // your email client will show the person's email address like 

normal
$headers 
.= "Content-Type&#58; text/plain; charset=iso-8859-1\n"// sets the mime type
$recipient "youremail@yourdomain.com"// enter YOUR email address here
$subject "Put your text here"// this is the subject of the email

$msg wordwrap&#40; $msg, 1024 &#41;;

mail&#40;$recipient, $subject, stripslashes&#40;$msg&#41;, $headers&#41;; // the mail&#40;&#41; function sends the message to 

you

//Once the data is entered, redirect the user to give them visual confirmation
   
header&#40;"location&#58; thanks.php"&#41;;
?>


now copy the following text to another file and save it as thanks.php
the user will be taken to the page once they submit their form, once again change the text in here to suit your site:

Code:
<h1>Thanks!</h1>
<p> If you made it here, it means we've gotten your email. Someone will be in contact with you as soon as the website is up and running. Please dont forget to tell your friends, and tell them to include your email when sending us an email from the site.<br />
Thanks!</p>
<p><strong>Your sig </strong></p>
<p>Go back to <a href="http://www.yourdomain.com">yourdomain.com</a></p>


and then copy the following code into your html file where you want the form to appear:


Code:
<form name="form" method="post" action="contactscript.php">
  <table width="400" border="0" align="center" cellpadding="2" cellspacing="2" summary="">
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your Name: </span></td>
      <td width="200" valign="top" align="left">
        <input type="text" name="name" size="25" maxlength="200" />
      </td>
    </tr>
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your Email:</span></td>
      <td width="200" valign="top" align="left">
        <input type="text" name="email" size="25" maxlength="100" />
      </td>
    </tr>
    <tr>
      <td width="200" valign="top" align="right"><span class="style6">Your BoroBiroon Username &amp; <br>
      Your Comments: </span></td>
      <td width="200" valign="top" align="left">
        <textarea name="msg" cols="25" rows="4"></textarea>
      </td>
    </tr>
    <tr>
      <td width="200" valign="top">&nbsp;</td>
      <td width="200" valign="top" align="left">
        <input type="reset" name="Reset" value="Reset" />
        <input type="submit" name="Submit" value="Submit" />
      </td>
    </tr>
  </table>
</form>


dont change any of the settings unless u know what ur doing
let me know if this works, this really is the EASIEST way to do it, i dont know of any other way to do it and i know that php is the easiest and best and most reliable Surprised)
good luck
Logged
TranzNDance
Princess of Naboo
Berserker Poster
*****
Offline Offline

Posts: 11809



WWW
« Reply #6 on: June 23, 2004, 05:51:00 PM »

aliadeel,

You would need to run the php code on your own domain, instead of the temporary lunarpages URL.

However, if you contact support, you could request them to set up a temporary subdomain on lunarpages so you can test php scripts.
Logged

Grr..!! Luff Ya Grr..!! Luff Ya Grr..!! Luff Ya
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #7 on: June 24, 2004, 04:16:09 PM »

aliadeel,  i took a look at your site
the html for the form seems to be ok
there could be 2 problems

1) you didnt enter the code correct in the php file(s)

or

2) what tranzdance said, i think the liekly reason the script is not working is cos ur running it on the temporary lp page

thats probably the cause

Thanks for your comment about my site Smile
i appreciate it, yes  i did spend a long time on it, a lot of work and a lot of advertising
and in regards to your question, im Persian (Iranian), living in the United Kingdom
Smile

i see you live in Dubai, i have family there
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
aliadeel
Space Explorer
***
Offline Offline

Posts: 6


WWW
« Reply #8 on: June 25, 2004, 01:49:26 PM »

Hi purepersian. The thing is i just copy/pasted yr code in my file , and just changed the subject and the email address. Here is the coding, see if u can help me out and u spot a mistake plz lemme know. The coding:

<?php

// headers for the email listed below

$headers .= "From: $name <$email>\n";  // your email client will show the person's email address like

normal
$headers .= "Content-Type: text/plain; charset=iso-8859-1\n"; // sets the mime type
$recipient = "aliadeel@hotmail.com"; // enter YOUR email address here
$subject = "Results from the Website"; // this is the subject of the email

$msg = wordwrap( $msg, 1024 );

mail($recipient, $subject, stripslashes($msg), $headers); // the mail() function sends the message to

you

//Once the data is entered, redirect the user to give them visual confirmation
   header("location: thanks.php");
?>
[/b][/color]
the above is the coding. Btw do i need to use html tags also, or just this entire script directly being pasted if enough?

Kool. Infact I went to Uk last year, it was gud fun.

Thankx

Quote from: purepersian
aliadeel,  i took a look at your site
the html for the form seems to be ok
there could be 2 problems

1) you didnt enter the code correct in the php file(s)

or

2) what tranzdance said, i think the liekly reason the script is not working is cos ur running it on the temporary lp page

thats probably the cause

Thanks for your comment about my site Smile
i appreciate it, yes  i did spend a long time on it, a lot of work and a lot of advertising
and in regards to your question, im Persian (Iranian), living in the United Kingdom
Smile

i see you live in Dubai, i have family there
Logged
aliadeel
Space Explorer
***
Offline Offline

Posts: 6


WWW
« Reply #9 on: June 26, 2004, 01:00:12 AM »

Hi Persian. Now that my DNS is linked up with my domain. I tried running the form file. Tranzdance was right, once my site is activated then I will be able to run the script. But now there is this another problem, finally when the comments are entered and the output goes to contactscript.php it gives me this error:

Parse error: parse error in contactscript.php on line 8

<?php

// headers for the email listed below

$headers .= "From: $name <$email>\n";  // your email client will show the person's email address like

normal
$headers .= "Content-Type: text/plain; charset=iso-8859-1\n"; // sets the mime type
(THIS IS THE 8TH LINE, THE $HEADERS ONE)
$recipient = "aliadeel@hotmail.com"; // enter YOUR email address here
$subject = "Comments from the website"; // this is the subject of the email

$msg = wordwrap( $msg, 1024 );

mail($recipient, $subject, stripslashes($msg), $headers); // the mail() function sends the message to

you

//Once the data is entered, redirect the user to give them visual confirmation
   header("location: thanks.php");
?>


Waiting for your reply.

Quote from: purepersian
aliadeel,  i took a look at your site
the html for the form seems to be ok
there could be 2 problems

1) you didnt enter the code correct in the php file(s)

or

2) what tranzdance said, i think the liekly reason the script is not working is cos ur running it on the temporary lp page

thats probably the cause

Thanks for your comment about my site Smile
i appreciate it, yes  i did spend a long time on it, a lot of work and a lot of advertising
and in regards to your question, im Persian (Iranian), living in the United Kingdom
Smile

i see you live in Dubai, i have family there
Logged
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #10 on: June 26, 2004, 05:43:52 AM »

hey man
well i cant see the problem in ur script
i compared it to mine, and i count an extra line,lol but cant see the problem

try this code see if it works

<?php

// headers for the email listed below

$headers .= "From: $name <$email>\n";  // your email client will show the person's email address like normal
$headers .= "Content-Type: text/plain; charset=iso-8859-1\n"; // sets the mime type
$recipient = "aliadeel@hotmail.com"; // enter YOUR email address here
$subject = "Comments from the website"; // this is the subject of the email

$msg = wordwrap( $msg, 1024 );

mail($recipient, $subject, stripslashes($msg), $headers); // the mail() function sends the message to you

//Once the data is entered, redirect the user to give them visual confirmation
   header("location: thanks.php");
?>



all the best, let me know if it works or not
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #11 on: June 26, 2004, 05:45:58 AM »

i just realised what ur problem was

u pressed enter after the world 'normal'

i think thats what the problem was
try my code, it shud work
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
aliadeel
Space Explorer
***
Offline Offline

Posts: 6


WWW
« Reply #12 on: June 26, 2004, 02:07:32 PM »

Hi Persian. Thanks for your reply man. I tried figuring out what the problem was when i pasted your code. Unfortunately, I dont have much programming experience because of which I couldnt figure out the problem. Confused  

I was trying to add some drop down, combo boxes but the problem was with me adding more options I guess. However, there is this site http://www.hotscripts.com they also have quite a lot of scripts. I found one there, customised it according to my need and its working, the only problem is its too complicated Crying or Very sad .

Your coding is much better and simpler, atleast i can understand it Rolling Eyes .

Apart from that, this forum is really good man, I mean you need help and in a few hours you get the reply. I appreciate your help persian Applause . I might be needing your help for the forums.

Thankx

Quote from: purepersian
i just realised what ur problem was

u pressed enter after the world 'normal'

i think thats what the problem was
try my code, it shud work
Logged
purepersian
Galactic Royalty
*****
Offline Offline

Posts: 307



WWW
« Reply #13 on: June 26, 2004, 04:23:25 PM »

sure man
no problem, im glad i could assist u
ye i was gonna give u the link to hotscripts but i guess i forgot

if u need anything gimme a shout
Smile

ciao
Logged

Judge not, as you'll be judged first...

Borobiroon.com - Persian Community
Blue Water Media - Professional Webdesign
aliadeel
Space Explorer
***
Offline Offline

Posts: 6


WWW
« Reply #14 on: July 02, 2004, 02:02:45 AM »

Hello guys. I'm back with some more problems. I have this form, when some data is entered it is supposed to mail me the details. But in my case it does mail me the details, but its different everytime. E.g. I have 10 fields, it mails me 5 and at times 6, but not all. Here is the script see if anyone could help me out.

http://www.bluesurf.net/sample/registration/register.htm (this is the link where u enter the details, and all the details should be mailed, I have specified the address in the php file). Ok here is the code:

$youremail="email@yahoo.com , aliadeelb@yahoo.com"; // This is the address that the information submitted will be sent to.

$emailsubject="Registration Form"; // This will the email's subject

// The From field will be be where this email came from.
// Note on the from field. the text after the first " mark, until the < is what appears in "From" in your email program.
// So, you can put anything alpha numeric here. That would be any letters A-Z and a-z, as well as 0-9
$from_who="From BlueSurf! <info@bluesurf.net>";

$pagetitle="From the BlueSurf Team!"; // Title to be displayed on the sent info page.

// Enter the code that you want to appear before the information submitted.
// Make sure you put a / mark before all double quotation marks or the script won't work.
// the \n at the end of the line is to create a new line in the HTML SOURCE. It DOES NOT create a break or new line
// when viewing it on the internet. Put these at the end of each line in the header and footer if you wish.
// They aren't required.

$header = "<!-- Begin Header -->\n
<table>\n
 <tr>\n
  <td bgcolor=\"000000\"><font color=\"FFFFFF\" size=\"2\" face=\"verdana\">\n
<!-- End Header -->\n";

// Enter the code you'd like displayed after the information submitted.
// Make sure you put a / mark before all double quotation marks or the script won't work.
// the \n at the end of the line is to create a new line in the HTML SOURCE. It DOES NOT create a break or new line
// when viewing it on the internet. Put these at the end of each line in the header and footer if you wish.
// They aren't required.

$footer = "<!-- Begin Footer -->\n
</td></tr></table>\n
<!-- End Footer -->\n";

// This code gets the ip address of the person submiting the form.
// You shouldn't remove it if you want to use this feature.
if (getenv(HTTP_CLIENT_IP)){
$user_ip=getenv(HTTP_CLIENT_IP);
}
else {
$user_ip=getenv(REMOTE_ADDR);
}

// If your server uses php version 4.2 or above, you can leave this section alone.

// Otherwise, add 2 slashes (//) to the beginning of the following 4 lines and delete the // in the section below.

$messenger1 = $_POST['messenger1'];
$messenger2  = $_POST['messenger2'];
$messenger3  = $_POST['messenger3'];
$textfield1 = $_POST['textfield1'];
$textfield2  = $_POST['textfield2'];
$textfield3  = $_POST['textfield3'];
$login = $_POST['login'];
$password = $_POST['password'];
$retype = $_POST['retype'];
$firstname = $_POST['firstname'];
$age = $_POST['age'];
$nationality = $_POST['nationality'];
$sex = $_POST['sex'];
//$bluetooth = $_POST['bluetooth'];
$type = $_POST['type'];
$mobile = $_POST['mobile'];
$pda = $_POST['pda'];
$laptop = $_POST['laptop'];
//$email = $_POST['email'];
//$telno = $_POST['telno'];
//$comments = $_POST['comments'];

//$firstname = $HTTP_POST_VARS['firstname'];
//$email = $HTTP_POST_VARS['email'];
//$url = $HTTP_POST_VARS['url'];
//$comments = $HTTP_POST_VARS['url'];


// Edit the following lines to customize how the email sent to you will look.
// To add more fields, just copy and paste the line, and edit the info between the " marks.
// The last 2 lines will send the users browser information and their ip number with the mail.
// Just in case. Smile

$mailbody="Senders Messsenger1:\n=================\n$messenger1\n\n";
$mailbody="Senders Messsenger2:\n=================\n$messenger2\n\n";
$mailbody="Senders Messsenger3:\n=================\n$messenger3\n\n";
$mailbody="Senders User1:\n=================\n$textfield1\n\n";
$mailbody="Senders User2:\n=================\n$textfield2\n\n";
$mailbody="Senders User3:\n=================\n$textfield3\n\n";
$mailbody="Senders Name:\n=================\n$firstname\n\n";
$mailbody.="Senders Age:\n=================\n$age\n\n";
$mailbody.="Senders Nationality:\n=================\n$nationality\n\n";
$mailbody.="Senders Sex:\n=================\n$sex\n\n";
$mailbody="Senders Login:\n=================\n$login\n\n";  
$mailbody="Senders Password:\n=================\n$password\n\n";
$mailbody="Senders Retyped Password:\n=================\n$retype\n\n";
//$mailbody.="Senders Bluetooth Ownsership:\n=================\n$bluetooth\n\n";
$mailbody.="Senders Type:\n=================\n$type\n\n";
$mailbody.="Senders Mobile:\n=================\n$mobile\n\n";
$mailbody.="Senders PDA:\n=================\n$pda\n\n";
$mailbody.="Senders Laptop:\n=================\n$laptop\n\n";
//$mailbody.="Senders E-mail:\n=================\n$email\n\n";
//$mailbody.="Senders Tel No:\n=================\n$telno\n\n";
//$mailbody.="Senders Comments:\n=================\n$comments\n\n";
$mailbody.="Senders Browser:\n=================\n$HTTP_USER_AGENT\n\n";
$mailbody.="Senders IP Number:\n=================\n$user_ip\n\n";

mail("$youremail", "$emailsubject", "$mailbody", "From: $from_who");  // Send the email.

$comments = nl2br($comments);
// Page HTML comes next.
?>
<html>
<head>
<title><?php $pagetitle ?></title>
<style type="text/css">
<!--
.style4 {
   font-size: 10px;
   font-family: Verdana, Arial, Helvetica, sans-serif;
}
.style5 {
   font-size: 11px;
   font-weight: bold;
   color: #4F7BBD;
}
.style7 {color: #FF9900}
.style9 {
   color: #FF9900;
   font-weight: bold;
}
.style10 {font-size: 11px}
.style11 {color: #FFFFFF}
.style12 {color: #000000}
.style13 {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 16px;
   font-weight: bold;
   color: #4F7BBD;
}
.style15 {color: #4F7BBD; font-size: 11px;}
.style16 {color: #990000}
.style17 {
   font-size: 12px;
   font-weight: bold;
   color: #990000;
}
.style18 {font-size: 10px}
.style19 {
   font-family: Verdana, Arial, Helvetica, sans-serif;
   font-size: 12px;
   font-weight: bold;
}
.style21 {font-size: 11px; font-family: Verdana, Arial, Helvetica, sans-serif; }
.style22 {
   color: #4F7BBD;
   font-weight: bold;
}
.style23 {color: #990000; font-size: 12px;}
-->
</style>
</head>
<body>
<table width="100%"  border="0">
  <tr>
    <td><div align="left"><img src="images/download_button.gif" width="64" height="58"></div></td>
  </tr>
  <tr>
    <td><div align="center"><span class="style13"> Coming Soon ! </span></div></td>
  </tr>
  <tr>
    <td><p class="style4"> <span class="style15"><span class="style16">Bluesurf networks is in it's final deployment phase to bringing to market all it's services. We have noted your preferences and will inform you as soon as the messengers are available for download.<br>
            <br>
        We thank you for your business.</span></span><span class="style5"><br>
      <br>
      Download bluesurf.net for my PC(FREE)</span><span class="style11">..</span>--- You need to download this to make use of bluesurf networks --- <br>
        <span class="style7"><strong>Windows<br>
  Mac</strong><br>
  <span class="style10"><br>
        </span></span> <span class="style5"><br>
        Download bluesurf.net for my device</span> --- This will download your selected messenger to your PC and you can transfer the file to your device via <br>
        <span class="style11">..................................................................</span><span class="style12">active sync, Infra-Red Bluetooth, Data-cable, etc</span><span class="style9"> <span class="style12">---</span> <br>
        <br>
        MSN BLUESURF (Value)<br>
  Yahoo BLUESURF (Value)<br>
  AOL BLUESURF (Value)</span></p>
      <p class="style4">&nbsp; </p>
      <p class="style4"><span class="style16">You can contact us for futher information: email:</span> <a href="mailto:%20info@bluesurf.net">info@bluesurf.net</a><br>
        <span class="style17"><span class="style11">...............................................................</span></span><span class="style23"><span class="style18">Tel: 97150 6789041</span></span></p></td>
  </tr>
  <tr>
    <td><div align="center"></div></td>
  </tr>
  <tr>
    <td><div align="left"><img src="images/corp.jpg" width="64" height="58"> <span class="style21"><span class="style22">ALSO COMING SOON </span>- CORPORATE BLUESURF WILL ALLOW YOU TO ACCESS YOUR COMPANY'S DATABASE </span></div></td>
  </tr>
  <tr>
    <td><div align="center"><span class="style19"><a href="../index.htm">Continue Surfing &gt;&gt;&gt;</a> </span></div></td>
  </tr>
</table>

</body>
</html>

SOMEONE HELP ME PLEASEEEEEEEEE!!!!!!
Logged
Pages: [1] 2   Go Up
  Print  
 
Jump to: