im trying to get a form to email from my website ... Â www.razsimracing.com ... i added fields and drop down boxes to the form and tryed editing the php file but nothing ... corpse when you get bored which i know your always busy doing something ... could you look at the form.html and send_mail.php and see what i missed please ... Â thank you buddy
do you want this separate from the website or do you want it like a module?
If this is built like a module, then I can easily have it set up to use recaptcha so you don't get spammed.
If this is built like a module, then I can easily have it set up to use recaptcha so you don't get spammed.
like a module corpse ... gonna use it on my website ...
...ty bro
Please login to see this link Get registered or Log in |
Okay. I will work on this over the next few days. I do want to point out a few obvious issues I have come upon.
In the feedback_form.html, you have none of the basics for a HTML page. The CSS should be in the head, and the actual system should be in the body. Here is an example of what it should look like.
Other things I found was the use of <center and <center/>. This one is a two parter. <center> is deprecated, which means is no longer a "valid" code. I wish it was because it made things easier, but, nothing I can do about it. Instead, you want to use CSS, and you can do inline if needed like,
<span style="text-align:center;"> Your Content </style>
The second issue was the closing. In HTML, the / comes before the name. So, <center/> should be </center>.
There were PHP issues in the system, but I wont get into that. I just wanted to point out two of the basics.
In the feedback_form.html, you have none of the basics for a HTML page. The CSS should be in the head, and the actual system should be in the body. Here is an example of what it should look like.
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>The Title of the page</title>
<style type="text/css">
Your CSS Here
</style>
</head>
<body>
Form would go in here.
</body>
</html>
Other things I found was the use of <center and <center/>. This one is a two parter. <center> is deprecated, which means is no longer a "valid" code. I wish it was because it made things easier, but, nothing I can do about it. Instead, you want to use CSS, and you can do inline if needed like,
<span style="text-align:center;"> Your Content </style>
The second issue was the closing. In HTML, the / comes before the name. So, <center/> should be </center>.
There were PHP issues in the system, but I wont get into that. I just wanted to point out two of the basics.
ok corpse i appreciate it ... i tryed but was getting frustrated after a few days i spent on it and nothing ... im trying to teach myself but it gets a bit confusing but im trying ... thanks for your help
— Rips wroteok corpse i appreciate it ...  i tryed but was getting frustrated after a few days i spent on it and nothing ...  im trying to teach myself but it gets a bit confusing but im trying ...  thanks for your help
N/P. Trying is what needs to be done. I just posted to point out some of the basics in the HTML that was the problem. I am still working on it, wasn't able to get much time into it today.
ok corpse i really appreciate it ... the wife says tyvm ... its for her paintshop on the website to take paint requests ... as you see ... she thanks you
How to you want the color to be shown? In your form, it's just an input. Do you want it that way, or do you want like a list of definded colors they can choose from, or I can use a color input which will send to you the Hex color.
Like Lime green color Hex color code is #00FF00.
Here is what I have done thus far:
That image above shows the form how it is. This next image is if they fail the recaptcha or forget to fill in the recaptcha, they see this. Note, the "!!WARNING!!" at the top does flash using CSS.
Also, do you want it to send the email to the admin email on the site, or do you want the option to plug in your own email for it to send to in the backend?
The form is done, though if there are more options that need to be added to the form, more than what was on the files you gave me, let me know. The system is pretty much done. I just need to know the email stuff then I will go from there. Once I have all the info, I will be done within hours.
Like Lime green color Hex color code is #00FF00.
Here is what I have done thus far:
That image above shows the form how it is. This next image is if they fail the recaptcha or forget to fill in the recaptcha, they see this. Note, the "!!WARNING!!" at the top does flash using CSS.
Also, do you want it to send the email to the admin email on the site, or do you want the option to plug in your own email for it to send to in the backend?
The form is done, though if there are more options that need to be added to the form, more than what was on the files you gave me, let me know. The system is pretty much done. I just need to know the email stuff then I will go from there. Once I have all the info, I will be done within hours.
looks awesome corpse ... doesnt matter just so it works ... i would like it to be sent to her email address ... dmpotts05@gmail.com ... whatever you do to make it look better im sure she will love ... thank you buddy
How do you want the colors to be displayed. You want them to type in the name of the colors, or do you want the hex code?