04-29-2011, 09:08 AM
|
|
Confirmed User
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>
|
|
|
|