Jump to content

grab text from textarea and store in session


MDanz

Recommended Posts

Is there an alternative way to send the words in the textarea to another page without using a form and submit button?

 

i'm trying this but it doesn't work.

 

<textarea name="text"> </textarea>

<?php
    $texttosend = $_POST['text'];
    $_SESSION['textareatext'] = $texttosend;
?>

 

on the next page

<?php echo $_SESSION['textareatext'] ?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.