Register for your free account! | Forgot your password?

Go Back   elitepvpers > MMORPGs > Conquer Online 2 > CO2 Private Server
You last visited: Today at 07:49

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



i know its wrong section but i didn't know where to post

Discussion on i know its wrong section but i didn't know where to post within the CO2 Private Server forum part of the Conquer Online 2 category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: May 2011
Posts: 84
Received Thanks: 2
i know its wrong section but i didn't know where to post

its possible to make a register page in html?
yes i want it in html cause my site is in html
are the codes the same as
Code:
<?php
$my_connection = mysql_connect("127.0.0.1","root","password");
$my_database = mysql_select_db("blahblah");
?>
HerpDerpNigga is offline  
Old 08/11/2011, 22:04   #2
 
elite*gold: 0
Join Date: Jul 2011
Posts: 39
Received Thanks: 2
Wtf , you can't do a register page only in html , you need to make 1 php page !
in your register.html put :
<form method="post" action="register.php" >
Username:<input type="text" name="username" /><br />
Password:<input type="password" name="password" /><br />
<input type="submit" name="sub" value="Register!" />
</form>

then make a page register.php :
<?php
include("connect.php");
$username = $_POST['username'];
$password = $_POST['password'];
if(isset($_POST['sub']))
{
if(!empty($_POST['username']))
{
if(!empty($_POST['password']))
{
mysql_query("ISERT INTO accounts(username, password) VALUES ('".$username."', '".$password."')");
echo "Account succesfuly registered !";
}
else
echo "You need to complete password field");
}
else
echo "You need to complete username field");
}
?>

Connect.php contains your mysql user , password , host etc ;


//this is a simple register page that i made right now ...you can improve it with email and other things
bodayo69 is offline  
Reply




All times are GMT +1. The time now is 07:51.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.