Advertisement
plezzz

ColoringTexts

May 18th, 2019
125
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.50 KB | None | 0 0
  1. <form>
  2.     <textarea name="input"></textarea><br>
  3.     <input type="submit" value="Color text">
  4. </form>
  5.  
  6. <?php
  7. if (isset($_GET['input'])) {
  8.     $chars = array_map("trim", str_split(htmlspecialchars($_GET['input'])));
  9.     $chars = array_filter($chars);
  10.  
  11.     foreach ($chars as $char) {
  12.         $check = ord($char);
  13.         if ($check % 2 == 0)
  14.             echo "<span style='color:red'>" . $char . " </span>";
  15.         else
  16.             echo "<span style='color:blue'>" . $char . " </span>";
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement