Hi below is a select menu that I want to set so that when a person selects the value "home then the cell next to it will echo $_session['home_phone'], if the value cell is selected then echo $_session['cell_phone'] if the value work is slected then I want to echo $_session['work_phone']. if all is selected then echo all three sessions.
I want this to be done after the selection is made not after a button is clicked
any help is execellent
PHP Code:<td class="left"><select name="select3">
<option value="home">Home Phone</option>
<option value="cell">Cell Phone</option>
<option value="work">Work Phone</option>
<option value="all">All Phone</option>
</select>
</td>
<td>session Value </td>


Reply With Quote
Bookmarks