$query = "select price from cardata where id=10";
$result = mysql_query($query);
echo $result['price'];
mysql_error();
hey guys i know this is a really stupid question but i cannot get my query to work via php :@
it echos nothing at all (and no errors) although i know for a fact, running that query through mysql returns 3333, but will not do it via php, i think i have gone wrong somewhere?
thanks muchly!