Quote:
Originally Posted by Kor
Is this what you are looking for?
Code:
<?php
if (isset($_GET){
$quote = &$_GET['quote'];
}
?>
<textarea value="<?php echo $quote; ?>"></textarea>
|
Well yes. But a textarea tag do not have a VALUE attr. So:
Code:
<textarea><?php echo $quote; ?></textarea>
But that is not the problem; the problem is to get the
$quote text INSIDE the textarea, when clicking on a link. (The TEXTAREA is placed in the ColorBox lightbox)