i have a string variable in php where it should fit inside different textbox. is it possible? as an example
<?php
print "UserName Balance 100";
?>
and html form
<html>
<head><title>test Page</title></head>
<body>
<form method="" action="">
username : <input type="text" value="$php value in here" disabled><br>
Balance : <input type="text" value="$php value in here" disabled><br>
Amount : <input type="text" value="$php value in here" disabled>
</form>
as u can see i want to put that string variable into these 3 box The "UserName" goes in first box then "Balance" in second box and then the third one.
just dont know how to do that. :(