it returns this:
select data1 from member where login = 'bako'
which is right... i think but my question is after this if i extract this row using
$row = mysql_fetch_array($result);
extract($row);
what do i do next? i want the value from data1 but data1 is in the varibale $data... i dunno how to set up the handle to actually get the value from data1 in the table...
i tried
$temp = '$';
$temp .= $data;
that gives me $temp = "$data1";
but i cant use this to compare anything err... so the problem is how to get to variable value if that variable name is held in a variable... 😕
i think jump off a cliff now