Advertisement
Guest User

Niloy

a guest
Feb 10th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.52 KB | None | 0 0
  1. <?php
  2. /*
  3. $username= 'Nil';
  4. $password = '100';
  5.  
  6. if ( $username== 'Nil'|| $password == 100){
  7.  
  8. echo 'welcome';
  9. }
  10.  
  11. else{
  12. echo 'username or password wrong ';
  13. }
  14. */
  15. /*
  16. $time=date('D');
  17.  
  18. if ($time=="tue")
  19.  
  20.  
  21. echo 'have a nice day ';
  22.  
  23. else
  24. echo 'have a nice weekend ';
  25. */
  26.  
  27. function write ($frame)
  28. {
  29. echo $frame.'hasan. <br>';
  30. }
  31.  
  32. echo 'my name is ';
  33. write (' niloy ' );
  34. echo ('my father name is ' );
  35. write (' abu taher ');
  36. echo ('my son name is ');
  37. write ('musa ')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement