View Single Post
Old 07-04-2011, 03:28 PM   PM User | #15
slyfox
New Coder

 
Join Date: May 2009
Posts: 17
Thanks: 0
Thanked 0 Times in 0 Posts
slyfox is an unknown quantity at this point
Quote:
Originally Posted by Kor View Post
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)
slyfox is offline   Reply With Quote