Visa spoiler
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns=" http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php
$connect = mysql_connect('chatnet.se.mysql','chatnet_se','gatimpan123');
$db = mysql_select_db('chatnet_se');
?>
<head>
<title>Chatnet startsida</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link href="css/global.css" rel="stylesheet" type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="container">
<div id="logo"></div>
<div id="container-top"></div>
<div id="container-mid">
<?php
// Connects to your Database
mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error());
mysql_select_db("Database_Name") or die(mysql_error());
//This code runs if the form has been submitted
if (isset($_POST['submit'])) {
//This makes sure they did not leave any fields blank
if (!$_POST['username'] | !$_POST['pass'] | !$_POST['pass2'] ) {
die('You did not complete all of the required fields');
}
// checks if the username is in use
if (!get_magic_quotes_gpc()) {
$_POST['username'] = addslashes($_POST['username']);
}
$usercheck = $_POST['username'];
$check = mysql_query("SELECT username FROM users WHERE username = '$usercheck'")
or die(mysql_error());
$check2 = mysql_num_rows($check);
//if the name exists it gives an error
if ($check2 != 0) {
die('Sorry, the username '.$_POST['username'].' is already in use.');
}
// this makes sure both passwords entered match
if ($_POST['pass'] != $_POST['pass2']) {
die('Your passwords did not match. ');
}
// here we encrypt the password and add slashes if needed
$_POST['pass'] = md5($_POST['pass']);
if (!get_magic_quotes_gpc()) {
$_POST['pass'] = addslashes($_POST['pass']);
$_POST['username'] = addslashes($_POST['username']);
}
// now we insert it into the database
$insert = "INSERT INTO users (username, password)
VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
$add_member = mysql_query($insert);
?>
<h1>Registered</h1>
<p>Thank you, you have registered - you may now login</a>.</p>
<form method="POST" action="/inloggad.html">
<input id="username-input" name="username" type="text" value="Användarnamn" onfocus="if(this.value == 'Användarnamn'){this.value = '';}" onblur="if(this.value ==
''){this.value = 'Användarnamn';}" />
<input id="password-input" name="password" type="password" value="Lösenord" onfocus="if(this.value == 'Lösenord'){this.value = '';}" onblur="if(this.value == '')
{this.value = 'Lösenord';}" />
<input id="register-account" type="button" name="register" onclick="document.location.href=' http://www.chatnet.se/?q=user/register';" />
<input id="log-in" type="submit" value=" " name="submit" />
<input id="forget-password" name="forpassword" type="button" onclick="document.location.href=' http://www.chatnet.se/?q=node&destination=node';" />
</form>
</div>
<div id="container-bot"></div>
</div>
</body>
</html>
<html xmlns=" http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<?php
$connect = mysql_connect('chatnet.se.mysql','chatnet_se','gatimpan123');
$db = mysql_select_db('chatnet_se');
?>
<head>
<title>Chatnet startsida</title>
<link rel="shortcut icon" type="image/x-icon" href="/favicon.ico">
<link href="css/global.css" rel="stylesheet" type="text/css" />
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1" />
</head>
<body>
<div id="container">
<div id="logo"></div>
<div id="container-top"></div>
<div id="container-mid">
<?php
// Connects to your Database
mysql_connect("your.hostaddress.com", "username", "password") or die(mysql_error());
mysql_select_db("Database_Name") or die(mysql_error());
//This code runs if the form has been submitted
if (isset($_POST['submit'])) {
//This makes sure they did not leave any fields blank
if (!$_POST['username'] | !$_POST['pass'] | !$_POST['pass2'] ) {
die('You did not complete all of the required fields');
}
// checks if the username is in use
if (!get_magic_quotes_gpc()) {
$_POST['username'] = addslashes($_POST['username']);
}
$usercheck = $_POST['username'];
$check = mysql_query("SELECT username FROM users WHERE username = '$usercheck'")
or die(mysql_error());
$check2 = mysql_num_rows($check);
//if the name exists it gives an error
if ($check2 != 0) {
die('Sorry, the username '.$_POST['username'].' is already in use.');
}
// this makes sure both passwords entered match
if ($_POST['pass'] != $_POST['pass2']) {
die('Your passwords did not match. ');
}
// here we encrypt the password and add slashes if needed
$_POST['pass'] = md5($_POST['pass']);
if (!get_magic_quotes_gpc()) {
$_POST['pass'] = addslashes($_POST['pass']);
$_POST['username'] = addslashes($_POST['username']);
}
// now we insert it into the database
$insert = "INSERT INTO users (username, password)
VALUES ('".$_POST['username']."', '".$_POST['pass']."')";
$add_member = mysql_query($insert);
?>
<h1>Registered</h1>
<p>Thank you, you have registered - you may now login</a>.</p>
<form method="POST" action="/inloggad.html">
<input id="username-input" name="username" type="text" value="Användarnamn" onfocus="if(this.value == 'Användarnamn'){this.value = '';}" onblur="if(this.value ==
''){this.value = 'Användarnamn';}" />
<input id="password-input" name="password" type="password" value="Lösenord" onfocus="if(this.value == 'Lösenord'){this.value = '';}" onblur="if(this.value == '')
{this.value = 'Lösenord';}" />
<input id="register-account" type="button" name="register" onclick="document.location.href=' http://www.chatnet.se/?q=user/register';" />
<input id="log-in" type="submit" value=" " name="submit" />
<input id="forget-password" name="forpassword" type="button" onclick="document.location.href=' http://www.chatnet.se/?q=node&destination=node';" />
</form>
</div>
<div id="container-bot"></div>
</div>
</body>
</html>
SHM - Don't you worry child!