Hi,
Can u tell me how I can to create contact form? I want to display:
1)name of the visitor
2)email address
3)subject
4) and finally the button "submit"
Also when the visitors leave me a message I want to receive a message in my email address.
Thank you..
Can u tell me how I can to create contact form? I want to display:
1)name of the visitor
2)email address
3)subject
4) and finally the button "submit"
Also when the visitors leave me a message I want to receive a message in my email address.
Thank you..
Re: HOW I CAN TO CREATE CONTACT FORM ??
I am interested in this same subject. I have tried to enter the form by guesswork. I cannot get the form to email to me. Can someone please help? I think the error is in the submit button. I am not sure what should go in the Form Properties: Action and Method. Thank you.
Wendy Merritt
http://www.purrrform.com/2500
Re: HOW I CAN TO CREATE CONTACT FORM ??
Re: HOW I CAN TO CREATE CONTACT FORM ??
Hopefully no "digitalskyline" like people are answering to this...
All I wann know is: I have a perfect working form.. looks like CKForms... by pressing the submit button all I get is a dumb 404 message...
where in god's name is that preference.
By the way: "It depends on the server, nothing to do with FCK" is one of the dumbest answers I have ever read in my whole life. Doesn't solve anything, makes a lot of people angry and is just an excuse for "I don't know"
Re: HOW I CAN TO CREATE CONTACT FORM ??
When you learn that you will know how to use the form features of FCKeditor, instead of blaming someone else for your lack of knowledge.
Re: HOW I CAN TO CREATE CONTACT FORM ??
Just created this account so I could get into the supposed "support forum" and was very interested by the following line in the user agreement:
"You agree not to post any abusive, obscene, vulgar, slanderous, hateful, threatening, sexually-orientated or any other material that may violate any laws be it of your country, the country where “CKSource” is hosted or International Law."
Does this line from the agreement not also apply to alfonsoml and digitalskyline? Both of your posts were abusive. If you are not going to be of any help, why bother to reply?
I also check the online documentation for FCKEditor 2.x. There isn't anything remotely intelligent about using the form function in there.
Re: HOW I CAN TO CREATE CONTACT FORM ??
1. Name (first and last name)
2. Contact No.
3. E-mail address
4. City
5. State
6. Reason to visit
Re: HOW I CAN TO CREATE CONTACT FORM ??
.
Does this help?
<html>
<head>
<title>Comment Form from FCKeditor - Sample</title>
<meta content="text/html; charset=utf-8" http-equiv="Content-Type">
<meta content="noindex, nofollow" name="robots">
<link href="../sample.css" rel="stylesheet" type="text/css"><!--insert correct path to the file on your server-->
<script src="../../fckeditor.js" type="text/javascript"></script><!--insert correct path to the file on your server-->
</head>
<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0">
<form action="mailto:mail@mail.com?subject=New Comment" method="post" name="form1"><!--insert correct path to your email-->
<table border="0" cellpadding="4" cellspacing="2" width="90%">
<tr valign="top">
<td bgcolor="#CCCCCC">Title</td>
</tr>
<tr valign="top">
<td></td>
</tr>
<tr valign="top">
<td>
<p>Name:<br><input name="textfield1" size="50" type="text"> </p>
<p>Email:<br><input name="textfield2" size="50" type="text"> </p>
<p>Subject:<br><input name="textfield3" size="50" type="text"> </p>
<p>Question or Comment:<br>
<script type="text/javascript">
<!--
// Automatically calculates the editor base path based on the _samples directory.
// This is usefull only for these samples. A real application should use something like this:
// oFCKeditor.BasePath = '/fckeditor/' ; // '/fckeditor/' is the default value.
var sBasePath = document.location.href.substring(0,document.location.href.lastIndexOf('_samples')) ;
var oFCKeditor = new FCKeditor( 'FCKeditor1' ) ;
oFCKeditor.BasePath = sBasePath ;
oFCKeditor.Height = 300 ;
oFCKeditor.Value = '<p>This is some <strong>sample text<\/strong>. You are using <a href="http://www.fckeditor.net/">FCKeditor<\/a>.<\/p>' ;
oFCKeditor.Create() ;
//-->
</script>
<br></p>
</td>
</tr>
<tr valign="top">
<td><input name="Submit" type="submit" value="Submit"> </td>
</tr>
</table>
</form>
</body>
</html>
Please remember to point to the correct paths scripts on your server or it won't work properly