Quote:
Originally Posted by slyfox
How shall the above code look, if I wish to get ($_GET) a value from my url? (topic.php?id=1"e=2) - in this case, I need to have the quote value
And how shall the URL to start the JS function look like?
The textareas ID is id="replyText".
|
Is this what you are looking for?
Code:
<?php
if (isset($_GET){
$quote = &$_GET['quote'];
}
?>
<textarea value="<?php echo $quote; ?>"></textarea>