note 8920 deleted from control-structures.else by felipe
| Newsgroups | php.notes |
|---|---|
| Message-ID | <[email protected]> |
Note Submitter: cap at capsi dot com ---- Often you can avoid large if/else statements in your code by using the ternary operator. For example: <?php echo "You have $i ". ($i==1 ? "message" : "messages"). " in your mailbox.\n"; ?>