I have two problems.
1. I've followed the tutorials for creating a registration/login system with the activation codes. It all seems to work fine but when I enter the activation code it doesn't seem to delete the row in the `user_activations` table.
2. I tried to run my register/login script online via bluehost and when I submit the page turns blank.
Any ideas?
Thanks.
user.inc.php
//activates the account related to given code.
function activate_account($aid) {
	$aid = mysql_real_escape_string($aid);
	
	mysql_query("DELETE FROM `user_activations` WHERE `activation_code` = '{$aid}'");
activate.php
<?php
include('/core/init.inc.php');
if (isset($_GET['$aid'])) {
	activate_account($_GET['aid']);
}
?>
<p>
	Your account has been activated, you can now <a href="login.php"> log in</a>
</p>
