I've used mysql_fetch_array using similar code to below for quite a few script now, however for this particular script when I try to echo $author_id it merely echos author_id
while( $row = mysql_fetch_array($result) )
{
$title = $row['title'];
$content = $row['content'];
$author = $row['author'];
$author_id = $row['author_id'];
$date = $row['date'];
}
The only thing that I can think of is that there might be problems because mediumint whereas all the others are tiny or mediumtext. Is this a possibility and if so what else should I be using?