SCRIPT ERROR
         
               Posted on 
16th Feb 2014 07:03 pm by  
admin
        
        Here is the CONTACT FORM I made for our website:
<form id="form1" name="form1" method="post" action="">
    <table width="528" border="0">
      <tr>
        <td><div align="right">
          <label></label>
          <label for="textfield">Email:</label>
        </div></td>
        <td>
          <div align="left">
            <input name="email" type="text" id="email" size="30" maxlength="90" />
          </div></td>
      </tr>
      <tr>
        <td><div align="right">
          <label for="textfield">Name:</label>
        </div></td>
        <td><div align="left">
          <input name="name" type="text" id="name" size="30" />
        </div></td>
      </tr>
      <tr>
        <td><div align="right">
          <label for="textfield">Phone Number:</label>
        </div></td>
        <td><div align="left">
          <input name="phonenumber" type="text" id="phonenumber" size="30" maxlength="12" />
        </div></td>
      </tr>
      <tr>
        <td><div align="right">Website Rating: </div></td>
        <td><div align="left">
          <p>
            <label>
              <input type="radio" name="Rating" value="rating1" />
              1</label>
            <label>
              <input type="radio" name="Rating" value="rating2" />
              2</label>
            <label>
              <input type="radio" name="Rating" value="rating3" />
              3</label>
            <label>
              <input type="radio" name="Rating" value="rating4" />
              4</label>
            <label>
              <input type="radio" name="Rating" value="rating5" />
              5</label>
          </p>
          <p>
            <label>
              <input type="radio" name="Rating" value="rating6" />
              6</label>
            <label>
              <input type="radio" name="Rating" value="rating7" />
              7</label>
            <label>
              <input type="radio" name="Rating" value="rating8" />
              8</label>
            <label>
              <input type="radio" name="Rating" value="rating9" />
              9</label>
            <label>
              <input type="radio" name="Rating" value="rating10" />
              10</label>
            <br />
          </p>
        </div></td>
      </tr>
      <tr>
        <td><div align="right">
          <label for="select">Topic:</label>
        </div></td>
        <td><div align="left">
          <select name="commenttopic" id="commenttopic">
            <option selected="selected">Choose a topic</option>
            <option value="Missing College Info">Missing College Info</option>
            <option value="Missing College Name">Missing College Name</option>
            <option value="General Query">General Query</option>
            <option value="Site Upgradation Suggestion">Site Upgradation Suggestion</option>
            <option value="Admistrator Appointment">Administrator Appointment</option>
            <option value="Advertisement">Advertisement</option>
            </select>
        </div></td>
      </tr>
      <tr>
        <td><div align="right">
          <label for="textarea">Comment:</label>
        </div></td>
        <td><div align="left">
          <textarea name="comment" cols="30" rows="5" id="comment"></textarea>
        </div></td>
      </tr>
      <tr>
        <td><div align="right">
          <label for="Submit"></label>
        </div></td>
        <td><div align="left">
          <label for="label"></label>
          <input type="reset" name="Reset" value="Reset the form" id="Submit" />
          <input type="submit" name="Submit" value="Submit" id="label" />
        </div></td>
      </tr>
    </table>
  </form>
I am very new to php. So please help me with the php script of the contact form. I am having difficulty in running the script. Here is my script:
<?php
$to = $_REQUEST['sendto'] ;
$from = $_REQUEST['Email'] ;
$name = $_REQUEST['Name'] ;
$headers = "From: $from";
$subject = "Web Contact Data";
$fields = array();
$fields{"email"} = "email";
$fields{"name"} = "name";
$fields{"phonenumber"} = "phonenumber";
$fields{"list"} = "Mailing List";
$fields{"commenttopic"} = "commenttopic";
$fields{"comment"} = "comment";
$body = "We have received the following information:nn"; foreach($fields as $a => $b){ $body .= sprintf("%20s: %sn",$b,$_REQUEST[$a]); }
$headers2 = "From: noreply@YourCompany.com";
$subject2 = "Thank you for contacting us";
$autoreply = "Thank you for contacting us. Somebody will get back to you as soon as possible, usualy within 48 hours. If you have any more questions, please consult our website at www.oursite.com";
if($from == '') {print "You have not entered an email, please go back and try again";}
else {
if($name == '') {print "You have not entered a name, please go back and try again";}
else {
$send = mail($to, $subject, $body, $headers);
$send2 = mail($from, $subject2, $autoreply, $headers2);
if($send)
{header( "Location: http://www.YourDomain.com/thankyou.html" );}
else
{print "We encountered an error sending your mail, please notify webmaster@YourCompany.com"; }
}
}
?>       
      
       
		No comments posted yet	
	Your Answer:
	        Login to answer
        
193   44
 44  
 
    
    
 
Other forums
Require select-option functionality in Module Pool Programming 
Hi Gurus,
I am doing a development by Module Pool on Warehouse Management. For that devel
javascript in php code causes page to display white 
Hi All,
Odd one this, I've got the following code (below) which is a simple log in form. The 
pull content 
I have an existing page, domain/adverts.php which has a good PR. I've just rebuilt my site and the n
Problems with array 
This code is the last lines in an upload script that uploads 4 images at the same time and writes th
HTML form problem 
Ive made a form to that i want to send to my email via PHP. but when it send only the name's etc sen
Showing selected item at top of list 
Hi,
I've got a list of names which i am fetching from database like this:
 $qry = db_query
Displaying different page content, depending on the logged in user. 
Hi all, I am new to ASP.net (and web development in general), and have a question about how I can di
Insert numbers from Barcode scanner into online php page 
I have a real big problem, Here is what I'm trying to do. I have a Intermec CN3 handheld computer th
Help With editting and deleting form 
So look at this image :
http://img194.imageshack.us/img194/8272/snapshot5f.png 
This table
problems with script 
I made a small script wich exchanges points in my website:
 <?php
session_start