I apoligise if this is a question with an easy answer but...
My mySQL table only has many fields but only 1 row in it.
How can I retrieve only 1 row of data. All the coding examples I have seen expect multiple rows and therefore provide coding examples using loops but thats not what I want.
Here what Im trying to achieve using code and english:
$query = "SELECT * from sysControl";
$result = @mysql_query($query);
if ($result){
$page_title = firstcolumn;
$page_content = secondcolumn
and so on...
}
Hope this makes sense!!
J