fork download
  1. <form action="test.php" method="post">
  2. <p>Ваш Текст: <input type="text" name="text" /></p>
  3. <p><input type="submit" /></p>
  4. </form>
  5. <?php
  6. $text2 = $_GET['text'];
  7. $text = urlencode($_POST['text']);
  8. echo "Ваш текст из формы:".htmlspecialchars(urldecode($text));
  9. echo '<br>';
  10. echo "Ваш Текст из ссылки: ".htmlspecialchars(urldecode($text2));
  11. $link = array( 'text' => $text);
  12. $newLink = http_build_query($link);
  13. ?>
  14. </br>
  15. <a href='test.php?<?=$newLink?>'>Push here: <?=htmlspecialchars(urldecode($text))?></a>
Success #stdin #stdout #stderr 0.01s 24400KB
stdin
Standard input is empty
stdout
   <form action="test.php" method="post">
        <p>Ваш Текст: <input type="text" name="text" /></p>
        <p><input type="submit" /></p>
    </form>
Ваш текст из формы:<br>Ваш Текст из ссылки: </br>
<a href='test.php?text='>Push here: </a>
stderr
PHP Notice:  Undefined index: text in /home/ihhhd6/prog.php on line 6
PHP Notice:  Undefined index: text in /home/ihhhd6/prog.php on line 7