How to handle multiple IF?
- this is my current code:
<?php
= 'Text string 0 - ultimate info';
= 'Text string 1';
= 'Text string 2';
= 'Text string 3';
= 'Text string 4';
= 'Text string 5';
if ([100]) { print ; }
else if ([101]) { print ; }
else { print ; }
?> <?php
= 'Text string 0 - ultimate info';
= 'Text string 1';
= 'Text string 2';
= 'Text string 3';
= 'Text string 4';
= 'Text string 5';
...
if ([100]) { print ; }
if ([101]) { print ; }
if ([102]) { print ; }
if ([103]) { print ; }
if ([104]) { print ; }
...
else { print ; }
?>
I recently hit the "RESTART" button on my life, read my personal blog to find out how I did it :)