/    Sign up×
Community /Pin to ProfileBookmark

How to populate <textarea> with a variable?

I am trying to populate my textarea with a variable by putting it between the textarea tags and have tried this:

<textarea>$favorite_fruit</textarea>

and

<textarea>echo $favorite_fruit</textarea>

But I just get the output “$favorite_fruit” instead of “Pineapples” in the text area.

How can I make the textarea be populated with “Pineapples” instead of “$favorite_fruit”?

As usual I have adwords vouchers and can make a paypal donation for good advice. Thanks!

to post a comment
PHP

1 Comments(s)

Copy linkTweet thisAlerts:
@NvenomJul 13.2011 — I am trying to populate my textarea with a variable by putting it between the textarea tags and have tried this:

<textarea>$favorite_fruit</textarea>

and

<textarea>echo $favorite_fruit</textarea>

But I just get the output "$favorite_fruit" instead of "Pineapples" in the text area.

How can I make the textarea be populated with "Pineapples" instead of "$favorite_fruit"?

As usual I have adwords vouchers and can make a paypal donation for good advice. Thanks![/QUOTE]


Without posting your script im guessing that your not echoing out that textarea

so try

[code=php]
<?php
//your php script here assigning $favorite_fruit..
$favorite_fruit = "pineapple";
?>
<textarea><?php echo $favorite_fruit; ?></textarea>

[/code]
×

Success!

Help @Quattro spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.2,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...