Guest User

Untitled

a guest
May 5th, 2012
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.44 KB | None | 0 0
  1. <html>
  2. <head>
  3. <title>Title of the document</title>
  4. </head>
  5. <?php
  6.     function remove($string)
  7.     {
  8.         $string = str_replace(",", "<br />", $string);
  9.         return $string;
  10.     }
  11.  
  12.     if($_POST)
  13.     {
  14.         echo remove($_POST['keywords']);
  15.         echo "<br />";
  16.         echo "<br />";
  17.         echo $_POST["keywords"];
  18.     }
  19.  
  20. ?>
  21. <form method="post" action="">
  22. <textarea name="keywords" cols="40" rows="5">
  23. </textarea><br>
  24. <input type="submit" value="Submit" />
  25. </form>
Advertisement
Add Comment
Please, Sign In to add comment