assing values to the input while the page is being loaded

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
phpDVWeaver
Forum Commoner
Posts: 28
Joined: Sun Apr 29, 2007 11:00 pm

assing values to the input while the page is being loaded

Post by phpDVWeaver »

I have two html pages the first one has email, and name input s. the second page should have amoung other things these two info.
I want to display them into the apropriate inputs of the second page while it is being loaded

I already assigned those values to variables in php file but my concern is mainly how to use them.

any ideas.

thanks
User avatar
RobertGonzalez
Site Administrator
Posts: 14293
Joined: Tue Sep 09, 2003 6:04 pm
Location: Fremont, CA, USA

Post by RobertGonzalez »

Moved to PHP - Code.

Can you clarify your question a little bit? I am not following.
djot
Forum Contributor
Posts: 313
Joined: Wed Jan 14, 2004 10:21 am
Location: planet earth
Contact:

Post by djot »

-

Code: Select all

<input type="text" name="email" value="<?php echo $email; ?>">
??

djot
-
Post Reply