Devi aggiungere l'alias relativo al count() della query

Codice PHP:
$result mysql_query("SELECT COUNT(*) AS tot_articles
                       FROM articles
                       WHERE owner LIKE '
$current_user'")
                       or die(
mysql_error());

$row mysql_fetch_object($result); 
e poi fai un controllo, tipo

Codice PHP:
if($row->tot_articles <= 2//redirect al form

else //altre istruzioni