Guest User

Untitled

a guest
Jul 22nd, 2018
76
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.16 KB | None | 0 0
  1. <?php
  2. $test = array("blue","yellow","orange");
  3. if (in_array("blue",$test)){
  4.     echo "blue ! <br>";
  5. }
  6. if (in_array("yell",$test)){
  7.     echo "yell <br>";
  8. }
  9. ?>
Add Comment
Please, Sign In to add comment