My website is http://www.softwareeditorial.com/contact us.html
I would appreciate if someone could test this, one thing I have noticed is that no one seems to have their emails go to a googlemail account, this is where I want mine to go
My website is http://www.softwareeditorial.com/contact us.html
I would appreciate if someone could test this, one thing I have noticed is that no one seems to have their emails go to a googlemail account, this is where I want mine to go
Last edited by navaldesign; 05-23-2006 at 09:20 AM.
Seems to work ok, though the Thankyou page is not what i would do.
A good habbit is to have your links with underscores - no blank spaces. I had to correct your link.
And yes, after a change in the smtp autentication software, which was performed sometime ago, you can have the mail sent to your Google email address
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
thank you naval design
this is what appeared in googlemail
Values submitted from web site form:
Message : Just testing your form
email_address : ????@navaldesign.it
subject : Testing
name : Navaldesign
Submit : Submit
is that usual for it to be like this ?
how could I make the message after clicking the button more appealing ?
Last edited by navaldesign; 05-23-2006 at 05:01 PM.
You may also want to change your 404 error page. Your "Click here to continue" link leads to www.vodahost.com and NOT to your homepage as it should (or the last page they had visited on your site)
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
I have not seen a click here to continue link !
or a 404 error page where is this then, all i see is when I click the submit button is a message in which there are no links
You need to change the script a little. Go in : http://netisopen.com/computer/TF001/T001.html
You can also find a tutorial and example on adding field validation in your script in http://netisopen.com/computer/TF005/T005.html
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
What i meant is the 404 Page not found error page that comes up when a visitor clicks on a non exixting link on your site. F.e., click on http://www.softwareeditorial.com/1234.html This will take you to your error page. This page can be customised to take back to your homepage. Click on this : http://www.navaldesign.info/dfsbb to see my error page.Originally Posted by cmwatts67
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
this is my form html I am a bit lossed with regard to what you are recommending this is the html of my form
<FORM name="Contact Us" method="POST" action="contact us.php" enctype="multipart/form-data">
<DIV style="position:absolute;left:15px;top:40px;width: 150px;height:18px;z-index:10" align="left">
<FONT style="FONT-SIZE:11pt" color="#00005E" face="Arial"><B>Name</B></FONT>
</DIV>
<DIV style="position:absolute;left:15px;top:100px;width :150px;height:18px;z-index:11" align="left">
<FONT style="FONT-SIZE:11pt" color="#00005E" face="Arial"><B>Email Address</B></FONT>
</DIV>
<TEXTAREA name="Message" style="position:absolute;left:184px;top:261px;widt h:367px;height:272px;z-index:12" rows=19 cols=43>Type Your Message Here</TEXTAREA>
<INPUT type="text" style="position:absolute;left:182px;top:97px;width :368px;z-index:13" size="46" name="email address" value="">
<INPUT type="text" style="position:absolute;left:182px;top:156px;widt h:368px;z-index:14" size="46" name="subject" value="">
<INPUT type="text" style="position:absolute;left:181px;top:39px;width :368px;z-index:15" size="46" name="name" value="">
<DIV style="position:absolute;left:15px;top:156px;width :150px;height:18px;z-index:16" align="left">
<FONT style="FONT-SIZE:11pt" color="#00005E" face="Arial"><B>Subject</B></FONT>
</DIV>
<INPUT type="submit" name="Submit" value="Submit" style="position:absolute;left:182px;top:558px;z-index:17">
<INPUT type="reset" name="Reset" value="Reset" style="position:absolute;left:254px;top:558px;z-index:18">
<DIV style="position:absolute;left:485px;top:230px;widt h:65px;height:36px;z-index:19" align="left">
<FONT style="FONT-SIZE:11pt" color="#00005E" face="Arial"><B>Message</B></FONT>
</DIV>
</FORM>
If you could highlight what I need to change this would be simpler for me and would be appreciated
This is the form page code. You don't have to do anything here, except maybe changing the action: "contact us.php" in "contact_us.php" (with underscore). Then copy the following code:
<?PHP
$email = $HTTP_POST_VARS[email];
$mailto = youremail@yourdomain.com;
$mailsubj = "Put your subject here";
$mailhead = "From: $email\n";
reset ($HTTP_POST_VARS);
$mailbody = "Values submitted from web site form: or whatever else you want \n";
while (list ($key, $val) = each ($HTTP_POST_VARS))
{
$mailbody .= "$key : $val\n";
}
mail($mailto, $mailsubj, $mailbody, $mailhead);
header("Location:thankyoupage.html");
?>
Paste the code in notepad. Change the lines in blue, to be your own details. Go to "SAve As", choose File Type: All files, and save it as "contact_us.php" on your computer. Upload it on your site, using BlueFTP. Now go in your form page, change the action in "contact_us.php", save it and re-publish it.
Create your "thankyoupage" in BV, as you want it to be. Make sure to insert also your menubar, so the visitor can go on surfing your site. Publish it normally. You are done!
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
Thank you for your help,
I will have to try this later as I have to go on a construction site now
once again thank you for your patience and cooperation.
Could you also give me clear instructions on that error page we discussed out of this forum
If you want a personalized " 404 Page not found" Error Page, create the page in BV excactly as you like it. Save it. Right click anywhere on the page, and Go to Page HTML. Copy the code of the page. Now go in your VodaHost CP, click on Error Pages. Choose the 404 Wrong Page. In the window that opens, delete everything, and paste the code that you have copied from the BV page. Save the page and you are done.
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
thats great that sounds easy enough I shall do this later
To Naval design i am getting the page for email confirmation acceptable but i canoot get the message to my email address, which is softwareeditorial@googlemail.com.
could you tell me what is wrong
Did you put your email address in the script ?
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
I think I have cracked it, could you test it for me one more time I think its done please would you let me know ?
Much Appreciated !
Seems to work, though i don't know if the email is sent or not. Also, take off your thankyou page the piece of code you have put in there and gives you that big black letter message.
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
I got it it works , ok and I will do the other
Thank you
What about in my email it says UNKNOWN SENDER why will it not identify the person sending the email, it does in the form.
(unknown sender) to me
Values submitted from web site form:
Message : Type Your Message Herexxxxxaaaaaaaaaaaaaaswwwwwwwwwwwwwwwwwwwwwddddd dd
email_address : testing cmw
subject : message test
name : chris watts
Submit : Submit
This is a simple script that you have used. At most, it can have in the "From" field, the email address tht's been typed in the form. No more than that.
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
And you still have some piece of code in your page, as well as some white text in the lower part of the thankyoupage.
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
sorry I don't not see what you sein my tests could you show me what you mean ?
In the tahnkyou page there is a >HTML and a ! under the right bottom pc
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
I have seen how to get rid of the !
but i am lost as to the html i can not work out which bit to delete out of the coding
Open the thankyou page in BV, view the html. and you will see it because it is in Blue Colour. You have probably forgotten it there when you copy / pasted to create the thankyou page. My guess is that it is in the Inside Body tag of your page
Navaldesign
Logger Lite: Low Cost, Customizable, multifeatured Login script
Instant Download Cart: a Powerfull, Customized, in site, DB driven, e-products Cart
DBTechnosystems.com Forms, Databases, Shopping Carts, Instant Download Carts, Loggin Systems and more....
Advanced BlueVoda Form Processor : No coding form processor! Just install and use! Now with built in CAPTCHA!
There are currently 1 users browsing this thread. (0 members and 1 guests)