Guest User

Untitled

a guest
Nov 7th, 2012
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.41 KB | None | 0 0
  1. if (isset($req) && $req['acc_type'] == 0) {
  2. echo "<style>
  3.         .acc{
  4.             color:blue;
  5.             font-weight:bold;      
  6.             }
  7.         </style>";
  8.         }
  9.         elseif (isset($req) && $req['acc_type'] == 1){
  10. echo "<style>
  11.         .acc{
  12.             color:red;
  13.             font-weight:bold;      
  14.             }
  15.         </style>";
  16.         }
  17.         elseif (isset($req) && $req['acc_type'] == 2){
  18.         echo "<style>
  19.         .acc{
  20.             color:green;
  21.             font-weight:bold;      
  22.             }
  23.         </style>";
  24.         }
  25.  
  26. ?>
Advertisement
Add Comment
Please, Sign In to add comment