View Single Post
Old 04-29-2011, 09:08 AM  
nation-x
Confirmed User
 
nation-x's Avatar
 
Industry Role:
Join Date: Mar 2004
Location: Rock Hill, SC
Posts: 5,370
I like ternaries
Quote:
<select name="favourite_fruit">
<option<?php echo ($row[favorite_fruit] == 'Apples')?' selected':''; ?>>Apples</option>
<option<?php echo ($row[favorite_fruit] == 'Bananas')?' selected':''; ?>>Bananas</option>
<option<?php echo ($row[favorite_fruit] == 'Oranges')?' selected':''; ?>>Oranges</option>
</select>
nation-x is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote