Jump to content

Form textare


jgurgen

Recommended Posts

for some reason my text area isnt showing up.  my dropdown shows up fine but not the text area.  And after an item is selected from the dropdown the window goes to DistrictForm_Update.php?=TEAMSELECTED but this brings me to a page cannot be founed i dont understand why.
[code]                                          <form id="DistrictSelect">
  <select id='SelectSchool' name='SelectSchool'  onChange="location = 'DistrictFrom_Update.php?District='+this.options[this.selectedIndex].value;">
                                            <option>Select School...</option>
                                            <?php
                                          while($row = mysql_fetch_array($result))
                                          {
                                            Print "<option value='".$row['District_Name']."'>".$row['District_Name']."</option>";
                                          }
 
                      //----------------------------------------------------------------------------                 
                                          $DistrictInfo = School_Data($row['District_Name']);

                                         
                    echo("</select><br>");

$District = $_GET['District'];
$District = urldecode($District);
echo("<input name='District' type='text' value='$District'>"); 
?>
</form>[/code]
Link to comment
https://forums.phpfreaks.com/topic/30961-form-textare/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.