Dear colleagues..

I am new to php and I am trying to do the following, to create a php file
that may contain some kind of form or survey and the data entered may be
added to a database...
Here the code of the html form

-----
<html>
<head>
<title>Survey</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
 <p ><strong>Survey</strong></p>
<form action="" method="post" name="importance"  id="importance">
  <table width="605" border="0">
    <tr>
      <td ><strong>Is reading important? </strong></td>
    </tr>
    <tr>
      <td > yes 
        <input name="radiobutton" type="radio" value="radiobutton"></td>
    </tr>
    <tr>
      <td >no
        <input name="radiobutton" type="radio" value="radiobutton"></td>
    </tr>
    <tr>
      <td >maybe
        <input name="radiobutton" type="radio" value="radiobutton"></td>
    </tr>
    <tr>
      <td >i don't know
        <input name="radiobutton" type="radio" value="radiobutton"></td>
    </tr>
    <tr>
      <td >&iquest;Why? </td>
    </tr>
    <tr>
      <td ><textarea name="textarea" cols="85" rows="5" ></textarea></td>
    </tr>
  </table>
</form>
<br>
</body>
</html>
----


______________________________
msc. tomas alberto ramirez.andujar
webmaster - cejisoft - +53 32 26 24 51
universidad pedagogica jose marti. camaguey
circunvalacion norte km 51/2 cp 74670. cuba
email : [EMAIL PROTECTED]
url: http://www.esicm.cu/cejisoft 



............................................................
Este mensaje ha sido analizado por MDaemon Antivirus v2.21.
Instituto Superior Pedagógico de Camaguey, Cuba.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to