hi,
how to insert a value into textfield which has been retrieved from the database programmatically ?
eg : i retrieved a value "hundred" from the database and i want to insert into a textfield via program?
insert value into textbox
Moderator: General Moderators
-
mattpointblank
- Forum Contributor
- Posts: 304
- Joined: Tue Dec 23, 2008 6:29 am
Re: insert value into textbox
Code: Select all
$age = 100;
echo "<input type='text' name='age' value='$age' />";