1) How come it wont add the row
cause your syntax is incorrect
2) What do i set my $timestamp to so it will be 0000-00-00 00:00:00 time format
use mysql's NOW()
Also, use mysql_error() to see what the problem is when you execute the query.
Here's what I'd make your query look like
$sql = "INSERT INTO addressbook (Timestamp, Title, News) VALUES(NOW(), '$title', '$news')";
$result = mysql_query($sql) or die(mysql_error());
Cgraz