Hello all, Could someone look into this code and advise me where I am going wrong. I have had sleepless nights trying to resolve this, but had absolutely no joy whatsoever.
----Code------
while ($row = mysql_fetch_array($result)) {
echo date('d F Y', strtotime($row['articleDate']));
echo stripslashes($row['articleTitle'];
echo "<a href=../display_article.php?id=.$row['id']>".$row['articleSubmittedBy'];
---EOC---
Basically what I am trying to do is extract data from mysql and list them on display_article.php with one of the data result is a link (href) for the article itself.
You guys have been very helpful in the past, and hope this time too, you will guide me in the right direction.
Many thanks in advance - Melwyn