What code do I use so the page only loads 1 column of mySQL data based on what the column's Primary ID is?
erm im not quite sure i get what your after but ill give it a whirl
$sql = "select * from dbname where columnname='$name' order by primarykey desc"
any help?
Do a LIMIT 1 with an ORDER BY in your SQL.
And your footer size needs to be shortened
stupid me, used wrong word _i, i mean row of data based on what the rows primary ID is, so when the person wants to see data on "Gundam", it grabs the row whose Primary ID (which in this case is the Robot's Name) which is equal to "Gundam"
"select * from database where fieldname='$variable'"