w00ty. I've got lots working now. Such as:
*Permanent Linking for news items
*Commenting (able to switch on and off for each news post)
*Archive system
*Separate news and index files to make it easier to include this code into other sites.
And what is even better is that I coded it ALL myself. Wonderful. I'll take down my old site now and replace it with this.
Still need to work on a admin panel that does everything (as you can move the header links around and all that cool stuff, just no admin panel :p), currently it only does my news. We'll get there, it's holidays.
[code]echo "";
include ("connect.php");
$submit = $HTTP_POST_VARS['submit'];[/code]
[code]if (!empty($email)&&!empty($author)){
echo "$author";
}
elseif(empty($email)&&!empty($author))
{echo "$author";
}
else{
echo "Anonymous";} [/code]
Test number two. This should fix up a few small things.