kclark Posted February 18, 2011 Share Posted February 18, 2011 Using php I have a dynamically filled select box with the names of images. How can I get an image box on my page and change upon selection? Quote Link to comment https://forums.phpfreaks.com/topic/228128-change-image/ Share on other sites More sharing options...
kclark Posted February 19, 2011 Author Share Posted February 19, 2011 Here is the code that I am working with. This will correctly pull the panels that I need for a particular company and put them in a list box. How can I get my image to change upon selection? <?php $panels = "select * from panels where company = " . $_GET["company"] . " order by name"; $result = mysql_query($panels); $num_rows = mysql_num_rows($result); if($num_rows == 0) echo ""; else { echo "<select>"; // printing the list box select command while($nt=mysql_fetch_array($result)){//Array or records stored in $nt echo "<option value=$nt[panelid]>$nt[name]</option>"; /* Option values are added by looping through the array */ } echo "<br></select>";// Closing of list box } ?> Quote Link to comment https://forums.phpfreaks.com/topic/228128-change-image/#findComment-1176740 Share on other sites More sharing options...
cyberRobot Posted February 19, 2011 Share Posted February 19, 2011 So are you wanting the image to change on the same page as the select box changes...or on the next page after the form is submitted? To change on the same page, you'll need to use something like JavaScript. Otherwise if the image changes on the next page, you can use PHP. Quote Link to comment https://forums.phpfreaks.com/topic/228128-change-image/#findComment-1176769 Share on other sites More sharing options...
kclark Posted February 19, 2011 Author Share Posted February 19, 2011 same page. I know nothing about javascript. Quote Link to comment https://forums.phpfreaks.com/topic/228128-change-image/#findComment-1176777 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.