Need help with comments box

stealth_thunder

New Member
Messages
556
Reaction score
0
Points
0
Hi guys,

Just a little favour,

Can someone create for me a mailform.cgi, coz I not sure about how to create a good one.

This is what i need for my comments
===================
- text box for visitor to write in ( with wrap and unlimited words )
- radio box \ checkbox \ options dropdown ( for options that would be send to my email)
- submit button to send mail (eg. myemail@x10hostings.com)
- clear box button to reset text box

Somethings Require you to Note if possible
=======================
- create the cgi in such a way i can modify
- teach me how to move the comment box to any area I want it to show
- I dun wish to use php but if you intend to use php please show me a detail instructions on how to use and modify it
- Teach me additional tips like how can I create my comment box in such a way that What You See Is What I Get on my email.

thanks to those who can help
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
I could help you but in about 11 hrs and am not sure whether that could be too late to help you!!!

do you want something like

First Name:
LastName:
Sex:
Occupation:
Hobbies:
Clear and Submit button

I used to have something like what is above but i deleted it a few weeks back!!!

*4*
 

stealth_thunder

New Member
Messages
556
Reaction score
0
Points
0
hi nforchange,

I dun need those formal

just need
========

- text area for comments
- submit buttion function
- reset button function
- radio button / checkbox button ( that is able to send text like eg. if this fellow wants me to send a email back to him he must click email receiveable )( default is no email sending required) All this would appear in my email.

I wonder if its possible that when u received the comments it will appear the same I requested above where it show me text and whether this visitor need me to send him a email or post it on the website
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
I have sent you a PM with details of which script that can help you do the above stuff... I will work on a form today and send you the link to it...

I wonder if its possible that when u received the comments it will appear the same I requested above where it show me text and whether this visitor need me to send him a email or post it on the website

If man can go to the moon then that should be possible too...

*4*
 

stealth_thunder

New Member
Messages
556
Reaction score
0
Points
0
Thanks nfochange I will wait for ur links and tutorial for creating that.

Thanks a thousand times
 

n4tec

Active Member
Messages
3,312
Reaction score
0
Points
36
i have sent another PM with some details!!!

*4*
 

stealth_thunder

New Member
Messages
556
Reaction score
0
Points
0
hi nfochange and the rest of x10hosting member professional,

I found that I am unable to make this without a mailform.cgi

can someone help me to create this cgi that will redirect to the email

here's the code that will show as a feeback form

Code:
<FORM METHOD="POST" ACTION="mailto:rxs2k5@gmail.com">
<input type="hidden" name="required_vars" value="Sending-of-emails">
<table cellspacing="1" cellpadding="1" border="0">
	<tr>
		<td valign="top">
			<b>Name</b>
		</td>
		<td valign="top">
			<input type="text" name="Name" size="20" value="">
		</td>
	</tr>
	<tr>
		<td valign="top">
			<b>Email</b>
		</td>
		<td valign="top">
			<input type="text" name="Email" size="20" value="">
		</td>
	</tr>
	<tr>
		<td valign="top">
			<b>Write Here</b>
		</td>
		<td valign="top">
			<textarea name="TextBox" rows="5" cols="25"></textarea>
		</td>
	</tr>
	<tr>
		<td valign="top">
			<b>Posting Options</b>
		</td>
		<td valign="top">
			<input type="radio" name="Sending-of-emails" value="Add to website"> Add to website<br/>
			<input type="radio" name="Sending-of-emails" value="Send to your email"> Send to my email<br/>
		</td>
	</tr>
	<tr>
		<td colspan="2" align="center">
			<input type="submit" value=" Submit Form "> <input type="reset" value=" Clear Form ">
		</td>
	</tr>
</table>
</form>

could someone create me a mailform.cgi with the above information so that I can put into my x10hosting site
thanks
 
Top