Jump to content

Search the Community

Showing results for tags 'form field to table.'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • W3Schools
    • General
    • Suggestions
    • Critiques
  • HTML Forums
    • HTML/XHTML
    • CSS
  • Browser Scripting
    • JavaScript
    • VBScript
  • Server Scripting
    • Web Servers
    • Version Control
    • SQL
    • ASP
    • PHP
    • .NET
    • ColdFusion
    • Java/JSP/J2EE
    • CGI
  • XML Forums
    • XML
    • XSLT/XSL-FO
    • Schema
    • Web Services
  • Multimedia
    • Multimedia
    • FLASH

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


AIM


MSN


Website URL


ICQ


Yahoo


Jabber


Skype


Location


Interests


Languages

Found 1 result

  1. I have a question form which have many question with select option of yes or no i need help. for example Question no 1 have 3 options which have 3 select field of yes or no <br><div class="form-group"> 1. <label for="q1"> Are you presently taking Tobacco/Alcohol/Drugs/Medicines in any form during the past 12 months? </label><br> Insured: <select name="q1opt1" data-placeholder="" class="flat-select" id="q1" type="select"> <option value="Yes" checked>Yes</option> <option value="No">No</option> </select> Spouse: <select name="q1opt2" data-placeholder="" class="flat-select" id="q1" type="select"> <option value="No" checked>No</option> <option value="Yes" >Yes</option> </select> Children: <select name="q1opt3" data-placeholder="" class="flat-select" id="q1" type="select"> <option value="No" checked>No</option> <option value="Yes">Yes</option> </select> </div><br> i want if user select yes of any one option Question No automatically show on below table in QUESTION NUMBER Field For example; Q1 or Q3 <table > <tr> <th style="width: 90px;text-align: center;">QUESTION NUMBER</th> <th style="width: 150px;text-align: center;">NAME</th> <th style="width: 150px;text-align: center;">ILLNESS OR INJURY</th> <th style="width: 150px;text-align: center;">DATES OF TREATMENT</th> <th style="width: 150px;text-align: center;">DATE OF RECOVERY</th> <th style="width: 150px;text-align: center;">NAME OF PHYSICIAN</th> </tr> <tr> <td><input type="text" name="questionno" style="width: 150px"></td> <td><input type="text" name="name" style="width: 150px"> </td> <td><input type="text" name="illnessofinjury" style="width: 150px"> </td> <td><input type="date" name="dateoftreatment" style="width: 150px;padding: 12px;height: 50px;"> </td> <td><input type="date" name="dateofrecovery" style="width: 150px;padding: 12px;height: 50px;"> </td> <td><input type="text" name="nameofphysician" style="width: 150px"> </td> </tr> </table> how can i do this with PHP? check my complete form and help me form.php
×
×
  • Create New...