Is it possible to display text dynamical without* a pageload, or does that need to be done in javascript?
It would be an if statment displaying text depending on what was selected.
<?php
if ($option == 1){
echo "<br><b>Option 1</b>";}
?>
With the html being a standard select.
I know it wouldnt be possible without a pageload, but is it possible to make selecting an option from a select menu trigger a stealthy page load, so the user doesnt know that a page has loaded and all the other select menus hold the selected values?