$id=1; $sql = mysql_query("select * from `table` where id=$id"); echo $sql[3]; 

Column numbered 3 is (for odd questions, I count from zero). id - the first key column. But does not deduce why? :(

    1 answer 1

    $row = mysql_fetch_array($sql); echo $row[3];