I am trying to fill a html form with data being received out of my mysql database. However I cannot set the forms to display on-load the variables being extracted from the datab
You have syntax error in your mysql query. You have not place field or columns name or (*) for all columns to extract.
*
Try like this..
$query = "SELECT * FROM character_tbl WHERE character_player ='".$_SESSION['user']."'";