Wrox Programmer Forums
Go Back   Wrox Programmer Forums > PHP/MySQL > Pro PHP
|
Pro PHP Advanced PHP coding discussions. Beginning-level questions will be redirected to the Beginning PHP forum.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Pro PHP section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old March 19th, 2007, 07:38 AM
Registered User
 
Join Date: Mar 2007
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default php and javascript

i have a form with a textarea..now i want to assign an initial value to it using javascript..the value will be fetched from a database(mysql)and assigned to a php variable...
the code is somewhat like this...
<form name="info"id="f1">
<textarea name="content" id="t1" value="<?php echo("$content"); ?>";></textarea>
</form>

this code is not working..

i also tried accessing the textarea from javascript

document.info.content.value=<?php echo("$content");?>;


this is also not working...the value stored in $content does not get displayed in the textarea when i load the page

can anyone help me out on this..

 
Old March 21st, 2007, 05:58 PM
Registered User
 
Join Date: Mar 2007
Posts: 3
Thanks: 0
Thanked 0 Times in 0 Posts
Default

A TextAreas Value does not get set inside the tag

<form name="info"id="f1">
<textarea name="content" id="t1"><?php echo("$content"); ?></textarea>
</form>

is what your form should look like.

Hope this helps






Similar Threads
Thread Thread Starter Forum Replies Last Post
PHP and Javascript davidhayter Beginning PHP 5 May 6th, 2005 05:33 AM
javascript with php kuehhc Beginning PHP 8 February 1st, 2005 10:59 PM
How to use javascript with php? raichand_ray PHP How-To 2 November 12th, 2004 06:41 AM
javascript and php? Ashleek007 Beginning PHP 21 September 23rd, 2004 01:40 PM
JavaScript and php Bandy PHP How-To 2 February 10th, 2004 04:32 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.