PHP Code:<?php
$db_host = "1234";
$db_user = "1234";
$db_pwd = "1234";
$db_name = "1234";
mysql_connect($db_host, $db_user, $db_pwd);
mysql_select_db($db_name);
?>
<?php
if ( $_POST['lock'] == 'LOCKED' ) {
mysql_query("update authorize set lockedstatus='LOCKED'");
} elseif ( $_POST['lock'] == 'UNLOCKED'] {
mysql_query("update authorize set lockedstatus='UNLOCKED'");
echo "You have sucessfully switched it to $_POST['lock'] status";
?>






look in your file system and see if it's logging errors to a file somewhere. like in htdocs or whatever your folder is when you first log in.

Bookmarks