~totaly stumped ~
Is there a way to fetch the 'value' of a field when using a variable for the field name in a select query? ex:
$field='name_of_the_table_column';
$fv=mysql_query("SELECT $field FROM table where condition=$condition");
$fieldValue =$mysql_fetch_array($fv);
the tables field name is determined
the condition is met.
there is only one row where that condition exists.
there is only, one record set, one ""$field"" value, one table field named"" $field"".
now what do i do to retrieve the 'VALUE' from that specific field ?
~ totaly stumped 😕