Forum Home
|
Marketplace
|
Articles
|
Blogs
|
Interviews
|
Tools
REGISTER
|
SEARCH
|
MEMBERS
|
F.A.Q.
Register Here
Forum Rules
Webmaster-Talk.com
>
Coding Talk
>
PHP Forum
>
using a php value in the VALUE of hidden field
Link Back
Thread Tools
using a php value in the VALUE of hidden field
03-27-2006, 11:18 AM
#
1
(
permalink
)
using a php value in the VALUE of hidden field
numbenator
Ultra Talker
Posts: 411
Location: London
Talkupation:
How do i set a text input field value to equal a php session variable
im using
<input type="text" name="compI" value=".$_SESSION['compNumber']."/>
but all it does is put the text ".$_SESSION['compNumber']."" in the field ... I want the value of the session variable
cheers
__________________
www.mastech-solutions.com
When You
Register
, These Ads Go Away!
03-27-2006, 12:18 PM
#
2
(
permalink
)
Re: using a php value in the VALUE of hidden field
mattcooper
Skilled Talker
Posts: 82
Talkupation:
Use...
PHP Code:
<?
echo
"<input type=\"text\" name=\"compI\" value=\""
.
$_SESSION
[
'compNumber'
] .
"\">"
;
?>
!!!
Last edited by mattcooper : 03-27-2006 at
12:33 PM
.
03-27-2006, 02:18 PM
#
3
(
permalink
)
Re: using a php value in the VALUE of hidden field
createvibe.com
Super Talker
Posts: 144
Talkupation:
or inline...
<input type="text" name="compI" value="<?= $_SESSION["compNumber"]?>" />
__________________
create.vibe
web development portfolio
03-27-2006, 10:01 PM
#
4
(
permalink
)
Re: using a php value in the VALUE of hidden field
QuickTim
Average Talker
Posts: 16
Talkupation:
dont forget to start the session
« Reply to
using a php value in the VALUE of hidden field
Previous Thread
|
Next Thread
Webmaster-Talk.com
>
Coding Talk
>
PHP Forum
>
using a php value in the VALUE of hidden field
Thread Tools
Show Printable Version
Email this Page
Posting Rules
You
may not
post new threads
You
may not
post replies
You
may not
post attachments
You
may not
edit your posts
vB code
is
On
Smilies
are
On
[IMG]
code is
On
HTML code is
Off
Trackbacks
are
Off
Pingbacks
are
Off
Refbacks
are
Off
Webmaster Resources Marketplace:
Software Development Company
|
Webhosting.UK.com
Web Templates
|
Text Link Brokers
|
Stock Photos
Feeds:
RSS
JS
XML
Feeds for this forum:
RSS
JS
XML
Mark Forums Read
-
View Forum Leaders
-
Contact Us
-
Webmaster Forum
-
Advertise
-
Archive
-
Privacy Statement
-
Top
Page generated in
0.13295
seconds with
12
queries