Passwords are incorrect now. 😃
It is just being stored in the database by using an INSERT statement.
<?
$dbh=mysql_connect ("localhost", "alwaysac", "xxx") or die ('I cannot connect to the database because: ' . mysql_error());
mysql_select_db ("alwaysac_MyArticles");
mysql_query("insert into Articles(TopicName, MetaTitle, MetaDesc, TopicTitle, TopicBody, Advert) values('$TopicName', '$MetaTitle', '$MetaDesc', '$TopicTitle', '$TopicBody', '$Advert')");
mysql_close($dbh);
header("Location: /pealist.php");
?>