Advertisement
gitlez

Untitled

May 12th, 2011
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. $pocket_change = 12000;
  4. $cost_bmw = 11000;
  5. $color_choice = 'red';
  6.  
  7. if($cost_bmw <= $pocket_change){
  8. if($color_choice == 'red'){
  9. echo 'My Girlfriend will ride with me!';
  10. }else{
  11. echo 'My Boyfriend will ride with me!';
  12. }
  13. }else{
  14. echo 'I could only afford a Honda.';
  15. }
  16.  
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement