[Solved] How to show data from database into text in php


There is a bug in the code. Change the while loop to this one:

while ($row = mysql_fetch_array($results1)) {
    echo '<td><input  type="text" value="' . $row["first_name"] . '" ></td>';
}

0

solved How to show data from database into text in php