jgurgen Posted December 17, 2006 Share Posted December 17, 2006 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 More sharing options...
jgurgen Posted December 17, 2006 Author Share Posted December 17, 2006 anyone? Link to comment https://forums.phpfreaks.com/topic/30961-form-textare/#findComment-143021 Share on other sites More sharing options...
Thierry Posted December 17, 2006 Share Posted December 17, 2006 If you get a PHP/SQL error inside a SELECT field and the script dies there, the rest of the page wont load, but you wont see the PHP error (as its inside the <select> tags), the error should show in the source code though, everything else looks fine I think. Link to comment https://forums.phpfreaks.com/topic/30961-form-textare/#findComment-143073 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.