Tüm sayfamdaki kodu kopyalıyorum:

<?php require_once('Connections/proje.php'); ?>

<?php
$makale1 = mysql_query("select articles.title, articles.author_id,users.username, users.id from articles,users where articles.author_id=users.id order by articles.title desc");
while($row=mysql_fetch_object($makale1)){
echo $row['articles.title'];
echo $row['users.username'];
}
?>

Explorerda aldığım hata :

Parse error: parse error, unexpected '{' in C:\Users\Lacivert\PHP\www\proje\deneme.php on line 5

Line 5 while komutunun olduğu satıra denk geliyo.