If a PHP variable is equal to a specific choice, then the PHP will add CSS to your page.
1 2 3 4 5 6 7 8 9 10 11 12 |
<?php $a="n"; if ($a=="n") { echo '<style type="text/css"> #contentWrap { display: none; } </style>'; } ?> |