How can I get in an array all the values of the row 'code' in Mysql table?
I ttried this:
$query = "SELECT * FROM users";
$res = mysql_query($query);
$str1 = mysql_fetch_assoc($res);
mysql_free_result($res);
print_r($str1[code]);
but it doen't work...? 😕