Jump to content

Accepting Terms and Conditions


Notoriouswow

Recommended Posts

I Have A Website Script For Account Registration, There Are Two For Two Different Things To Register For.

 

I Need A Script That Makes It So They Have To Accept The Terms and Conditions Before They Can Continue, And The Terms and Conditions Are In A Window That The Have To Scroll To The Bottom To Be Able To Accept Them or Decline Them. Also I Would Like To Know How To Successfully Input Them Into My Already Made Scripts.

 

Registrations #1:

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2005 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
include LOCALE.LOCALESET."register.php";
include LOCALE.LOCALESET."user_fields.php";
include INCLUDES."sendmail_include.php";

if (iMEMBER) fallback("index.php");

if ($settings['enable_registration']) {

if (isset($activate)) {
        $result = dbquery("SELECT * FROM ".$db_prefix."new_users WHERE user_code='$activate'");
        if (dbrows($result) != 0) {
                $data = dbarray($result);
                $user_info = unserialize($data['user_info']);
                $activation = $settings['admin_activation'] == "1" ? "2" : "0";
                $result = dbquery("INSERT INTO ".$db_prefix."users VALUES('', '".$user_info['user_name']."', '".md5($user_info['user_password'])."', '".$user_info['user_email']."', '".$user_info['user_hide_email']."', '', '0000-00-00', '', '', '', '', '', 'Default', '0', '', '', '0', '".time()."', '0', '".USER_IP."', '', '', '101', '$activation')");
                // Subscribe user to Newsletter when user registers //
                $user_id = mysql_insert_id();
                $result = dbquery("INSERT INTO ".$db_prefix."newsletter_subs VALUES ('', ".$user_id.")");
                $result = dbquery("DELETE FROM ".$db_prefix."new_users WHERE user_code='$activate'");        
                opentable($locale['401']);
                if ($settings['admin_activation'] == "1") {
                        echo "<center><br>\n".$locale['455']."<br><br>\n".$locale['453']."<br><br>\n</center>\n";
                } else {
                        echo "<center><br>\n".$locale['455']."<br><br>\n".$locale['452']."<br><br>\n</center>\n";
                }
                closetable();
        } else {
                redirect("index.php");
        }
} else if (isset($_POST['register'])) {
        $username = stripinput(trim(eregi_replace(" +", " ", $_POST['username'])));
        $email = stripinput(trim(eregi_replace(" +", "", $_POST['email'])));
        $password1 = stripinput(trim(eregi_replace(" +", "", $_POST['password1'])));
        
        if ($username == "" || $password1 == "" || $email == "") $error .= $locale['402']."<br>\n";
        
        if (!preg_match("/^[-0-9A-Z_@\s]+$/i", $username)) $error .= $locale['403']."<br>\n";
        
        if (preg_match("/^[0-9A-Z@]{6,20}$/i", $password1)) {
                if ($password1 != $_POST['password2']) $error .= $locale['404']."<br>\n";
        } else {
                $error .= $locale['405']."<br>\n";
        }

        if (!preg_match("/^[-0-9A-Z_\.]{1,50}@([-0-9A-Z_\.]+\.){1,50}([0-9A-Z]){2,4}$/i", $email)) {
                $error .= $locale['406']."<br>\n";
        }
        
        $email_domain = substr(strrchr($email, "@"), 1);
        $result = dbquery("SELECT * FROM ".$db_prefix."blacklist WHERE blacklist_email='".$email."' OR blacklist_email='$email_domain'");
        if (dbrows($result) != 0) $error = $locale['411']."<br>\n";
        
        $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_name='$username'");
        if (dbrows($result) != 0) $error = $locale['407']."<br>\n";
        
        $result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_email='".$email."'");
        if (dbrows($result) != 0) $error = $locale['408']."<br>\n";
        
        if ($settings['email_verification'] == "1") {
                $result = dbquery("SELECT * FROM ".$db_prefix."new_users");
                while ($new_users = dbarray($result)) {
                        $user_info = unserialize($new_users['user_info']); 
                        if ($new_users['user_email'] == $email) { $error = $locale['409']."<br>\n"; }
                        if ($user_info['user_name'] == $username) { $error = $locale['407']."<br>\n"; break; }
                }
        }
        
        if ($settings['display_validation'] == "1") {
                $user_code = stripinput($_POST['user_code']);
                $result = dbquery("SELECT * FROM ".$db_prefix."vcode WHERE vcode_1='$user_code'");
                if (dbrows($result) == 0) {
                        $error .= $locale['410']."<br>\n";
                } else {
                        $result = dbquery("DELETE FROM ".$db_prefix."vcode WHERE vcode_1='$user_code'");
                }
        }
        
        $user_hide_email = isNum($_POST['user_hide_email']) ? $_POST['user_hide_email'] : "1";
        
        if ($settings['email_verification'] == "0") {
                $user_location = isset($_POST['user_location']) ? stripinput(trim($_POST['user_location'])) : "";
                if ($_POST['user_month'] != 0 && $_POST['user_day'] != 0 && $_POST['user_year'] != 0) {
                        $user_birthdate = (isNum($_POST['user_year']) ? $_POST['user_year'] : "0000")
                        ."-".(isNum($_POST['user_month']) ? $_POST['user_month'] : "00")
                        ."-".(isNum($_POST['user_day']) ? $_POST['user_day'] : "00");
                } else {
                        $user_birthdate = "0000-00-00";
                }
                $user_aim = isset($_POST['user_aim']) ? stripinput(trim($_POST['user_aim'])) : "";
                $user_icq = isset($_POST['user_icq']) ? stripinput(trim($_POST['user_icq'])) : "";
                $user_msn = isset($_POST['user_msn']) ? stripinput(trim($_POST['user_msn'])) : "";
                $user_yahoo = isset($_POST['user_yahoo']) ? stripinput(trim($_POST['user_yahoo'])) : "";
                $user_web = isset($_POST['user_web']) ? stripinput(trim($_POST['user_web'])) : "";
                $user_theme = stripinput($_POST['user_theme']);
                $user_offset = is_numeric($_POST['user_offset']) ? $_POST['user_offset'] : "0";
                $user_sig = isset($_POST['user_sig']) ? stripinput(trim($_POST['user_sig'])) : "";
        }
        if ($error == "") {
                if ($settings['email_verification'] == "1") {
                        mt_srand((double)microtime()*1000000);
                        for ($i=0;$i<=7;$i++) { $salt .= chr(rand(97, 122)); }
                        $user_code = md5($email.$salt);
                        $activation_url = $settings['siteurl']."register.php?activate=".$user_code;
                        if (sendemail($username,$email,$settings['siteusername'],$settings['siteemail'],"Welcome to ".$settings['sitename'], $locale['450'].$activation_url)) {
                                $user_info = serialize(array(
                                        "user_name" => $username,
                                        "user_password" => $password1,
                                        "user_email" => $email,
                                        "user_hide_email" => isNum($_POST['user_hide_email']) ? $_POST['user_hide_email'] : "1"
                                ));
                                $result = dbquery("INSERT INTO ".$db_prefix."new_users VALUES('$user_code', '".$email."', '".time()."', '$user_info')");
                                opentable($locale['400']);
                                echo "<center><br>\n".$locale['454']."<br><br>\n</center>\n";
                                closetable();
                        } else {
                                opentable($locale['400']);
                                echo "<center><br>\n".$locale['456']."<br><br>\n</center>\n";
                                closetable();
                        }
                } else {
                        $activation = $settings['admin_activation'] == "1" ? "2" : "0";
                        $result = dbquery("INSERT INTO ".$db_prefix."users VALUES('', '$username', md5('".$password1."'), '".$email."', '$user_hide_email', '$user_location', '$user_birthdate', '$user_aim', '$user_icq', '$user_msn', '$user_yahoo', '$user_web', '$user_theme', '$user_offset', '', '$user_sig', '0', '".time()."', '0', '".USER_IP."', '', '', '101', '$activation')");
                        // Subscribe user to Newsletter when user registers //
                        $user_id = mysql_insert_id();
                        $result = dbquery("INSERT INTO ".$db_prefix."newsletter_subs VALUES ('', ".$user_id.")");
                        opentable($locale['400']);
                        if ($settings['admin_activation'] == "1") {
                                echo "<center><br>\n".$locale['451']."<br><br>\n".$locale['453']."<br><br>\n</center>\n";
                        } else {
                                echo "<center><br>\n".$locale['451']."<br><br>\n".$locale['452']."<br><br>\n</center>\n";
                        }
                        closetable();
                }
        } else {
                opentable($locale['400']);
                echo "<center><br>\n".$locale['456']."<br><br>\n$error<br>\n<a href='".FUSION_SELF."'>".$locale['459']."</a></div></br>\n";
                closetable();
        }
} else {
        if ($settings['email_verification'] == "0") {
                $theme_files = makefilelist(THEMES, ".|..", true, "folders");
                array_unshift($theme_files, "Default");
                $offset_list = "";
                for ($i=-13;$i<17;$i++) {
                        if ($i > 0) { $offset="+".$i; } else { $offset=$i; }
                        $offset_list .= "<option".($offset == "0" ? " selected" : "").">$offset</option>\n";
                }
        }
        if ($settings['display_validation'] == "1") {
                srand((double)microtime()*1000000); 
                $temp_num = md5(rand(0,9999)); 
                $vcode_1 = substr($temp_num, 17, 5); 
                $vcode_2 = md5($vcode_1);
                unset($temp_num);
                $result = dbquery("INSERT INTO ".$db_prefix."vcode VALUES('".time()."', '$vcode_1', '$vcode_2')");
        }
        opentable($locale['400']);
        echo "<center>".$locale['500']."\n";
        if ($settings['email_verification'] == "1") echo $locale['501']."\n";
        echo $locale['502'];
        if ($settings['email_verification'] == "1") echo "\n".$locale['503'];
        echo "</center><br>
<table align='center' cellspacing='0' cellpadding='0'>
<form name='inputform' method='post' action='".FUSION_SELF."' onSubmit='return ValidateForm(this)'>
<tr>
<td class='tbl'>".$locale['u001']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='text' name='username' maxlength='30' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u002']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='password' name='password1' maxlength='20' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u004']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='password' name='password2' maxlength='20' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u005']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='text' name='email' maxlength='100' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u006']."</td>
<td class='tbl'><input type='radio' name='user_hide_email' value='1'>".$locale['u007']."
<input type='radio' name='user_hide_email' value='0' checked>".$locale['u008']."</td>
</tr>\n";
        if ($settings['display_validation'] == "1") {
                echo "<tr>\n<td class='tbl'>".$locale['504']."</td>\n<td class='tbl'>";
                if ($settings['validation_method'] == "image") {
                        echo "<img src='?vimage=$vcode_2'>\n";
                } else {
                        echo "<b>$vcode_1</b>\n";
                }
                unset($vcode_1,$vcode_2);
                echo "</td>\n</tr>\n";
                echo "<tr>
<td class='tbl'>".$locale['505']."<span style='color:#ff0000'>*</span></td>
<td class='tbl'><input type='text' name='user_code' class='textbox' style='width:100px'></td>
</tr>\n";
        }
        if ($settings['email_verification'] == "0") {
                echo "<tr>
<td class='tbl'>".$locale['u009']."</td>
<td class='tbl'><input type='text' name='user_location' maxlength='50' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u010']." <span class='small2'>(mm/dd/yyyy)</span></td>
<td class='tbl'><select name='user_month' class='textbox'>\n<option> </option>\n";
                for ($i=1;$i<=12;$i++) echo "<option".($user_month == $i ? " selected" : "").">$i</option>\n";
                echo "</select>\n<select name='user_day' class='textbox'>\n<option> </option>\n";
                for ($i=1;$i<=31;$i++) echo "<option".($user_day == $i ? " selected" : "").">$i</option>\n";
                echo "</select>\n<select name='user_year' class='textbox'>\n<option> </option>\n";
                for ($i=1900;$i<=2004;$i++) echo "<option".($user_year == $i ? " selected" : "").">$i</option>\n";
                echo "</select>
</td>
</tr>
<tr>
<td class='tbl'>".$locale['u021']."</td>
<td class='tbl'><input type='text' name='user_aim' maxlength='16' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u011']."</td>
<td class='tbl'><input type='text' name='user_icq' maxlength='15' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u012']."</td>
<td class='tbl'><input type='text' name='user_msn' maxlength='100' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u013']."</td>
<td class='tbl'>
<input type='text' name='user_yahoo' maxlength='100' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u014']."</td>
<td class='tbl'><input type='text' name='user_web' maxlength='100' class='textbox' style='width:200px;'></td>
</tr>
<tr>
<td class='tbl'>".$locale['u015']."</td>
<td class='tbl'><select name='user_theme' class='textbox' style='width:200px;'>
".makefileopts($theme_files)."
</select></td>
</tr>
<tr>
<td class='tbl'>".$locale['u016']."</td>
<td class='tbl'><select name='user_offset' class='textbox'>
$offset_list</select></td>
</tr>
<tr>
<td valign='top'>".$locale['u020']."</td>
<td class='tbl'>
<textarea name='user_sig' rows='5' class='textbox' style='width:295px'>".$userdata['user_sig']."</textarea><br>
<input type='button' value='b' class='button' style='font-weight:bold;width:25px;' onClick=\"addText('user_sig', '[b]', '[/b]');\">
<input type='button' value='i' class='button' style='font-style:italic;width:25px;' onClick=\"addText('user_sig', '[i]', '[/i]');\">
<input type='button' value='u' class='button' style='text-decoration:underline;width:25px;' onClick=\"addText('user_sig', '[u]', '[/u]');\">
<input type='button' value='url' class='button' style='width:30px;' onClick=\"addText('user_sig', '[url]', '[/url]');\">
<input type='button' value='mail' class='button' style='width:35px;' onClick=\"addText('user_sig', '[mail]', '[/mail]');\">
<input type='button' value='img' class='button' style='width:30px;' onClick=\"addText('user_sig', '[img=', ']');\">
<input type='button' value='center' class='button' style='width:45px;' onClick=\"addText('user_sig', '
[center]', '[/center]
');\">
<input type='button' value='small' class='button' style='width:40px;' onClick=\"addText('user_sig', '[small]', '[/small]');\">
</td>
</tr>\n";
        }
        echo "<tr>
<td align='center' colspan='2'><br>
<input type='submit' name='register' value='".$locale['506']."' class='button'>
</td>
</tr>
</form>
</table>";
        closetable();
        echo "<script language='JavaScript'>
function ValidateForm(frm) {
        if (frm.username.value==\"\") {
                alert(\"".$locale['550']."\");
                return false;
        }
        if (frm.password1.value==\"\") {
                alert(\"".$locale['551']."\");
                return false;
        }
        if (frm.email.value==\"\") {
                alert(\"".$locale['552']."\");
                return false;
        }
}
</script>\n";
}

} else {
        opentable($locale['400']);
        echo "<center><br>\n".$locale['507']."<br><br>\n</center>\n";
        closetable();
}

require_once "side_right.php";
require_once "footer.php";
?>

 

Registrations #2:

<?php

//Recoding noriac


//includes
require_once "maincore.php";
require_once "subheader.php";
require_once "side_left.php";
?>
<html>
<head><title><?php echo "$conf[browsertitle]"; $d = P;?></title><link rel="StyleSheet" type="text/css" MEDIA="screen" href="main.css"> </head>
<body>
<center>


<div class="container">


<div class="container_body">
<div class="container_top">
<h1><?php echo "$lang[header]"; $lampstn="- ";?></h1>
</div>
<div class="container_left">
</div>
<div class="container_right">
</div>


<?php
/* Recoded Page for ascent
  * This is just a simple registration page for Ascent
  */

// Settings -------------------------------------------------------------------------------
include_once "game_config.php";
// Database Connection -------------------------------------------------------------
// You should not need to change these two, unless you know what you are doing and know you need to.
        $Con         = mysql_connect($Host,$Username,$Password) or die ("Error connecting to the mysql server!");
        $DB                = mysql_select_db($Database) or die ("Error selecting the database!");
// Start forming the page -------------------------------------------------------------
        $HTML = ""; // This will be used to store all the HTML and print it out in the end.
// HTML Header Var.
        $HTML .= "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Strict//EN\" 
                                        \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd\">";
        $HTML .= "<html><head><title>$Title</title></head>";
        $HTML .= "<body>";
// Get the mode we are in.
        // Anti-Script Injection
                $search = array(
                                                        '@<script[^>]*?>.*?</script>@si',  // Strip out javascript
                                        '@<style[^>]*?>.*?</style>@siU',    // Strip style tags properly
                                        '@<[\/\!]*?[^<>]*?>@si',            // Strip out HTML tags
                                        '@<![\s\S]*?--[ \t\n\r]*>@'        // Strip multi-line comments including CDATA
                                                );

        $MODE = htmlspecialchars(preg_replace($search, '', $_GET['m']), ENT_QUOTES);
        if (($MODE == null || !isset($MODE)) && $AllowReg)
        {
                $HTML .= "<fieldset>";
                $HTML .= "<legend> Create Account </legend>";
                if ($ShowWarning)
                {
                        $HTML .= "<fieldset><legend> Warning: </legend>";
                                $HTML .= "For your accounts security, please do not make your username, or password the same as any other";
                                $HTML .= "<br /> account information you use on another website, dispite what people say, it <b>is</b> possible";
                                $HTML .= "<br /> for people to recover your account information. Thank you.";
                        $HTML .= "</fieldset>";
                }
                $HTML .= "<br />";
                $HTML .= "<form method='post' action='game_acc.php?m=submit'>";
                $HTML .= "<table cellspacing = '0' cellpadding = '0' border = '0'>";
                        $HTML .= "<tr><td>Username:</td><td> <input type='text' name='Username' id='Username' /></td></tr>";
                        $HTML .= "<tr><td>Password:</td><td> <input type='password' name='password' id='password' /></td></tr>";
                        $HTML .= "<tr><td>Retype Password:</td><td> <input type='password' name='passconf' id='passconf' /></td></tr>";
                        $HTML .= "<tr><td>E-Mail:</td><td> <input type='text' name='email' id='email' /></td></tr>";
                        // Get the TBC settings.
                        if ($AllowTBC && !$ForceTBC)
                        {
                                $HTML.= "<tr><td>:</td><td><input type='checkbox' name='tbc' id='tbc' /></td></tr>";
                        }
                        $HTML .= "<tr><td></td><td><input type='submit' /></td></tr>";
                $HTML .= "</table>";
                $HTML .= "</form>";
                $HTML .= "</fieldset>";
        } else if ($MODE == "submit" && $AllowReg)
        {
                // Being system of checks.
                $Username = htmlspecialchars(preg_replace($search, '', $_POST['Username']), ENT_QUOTES);
                $Password = htmlspecialchars(preg_replace($search, '', $_POST['password']), ENT_QUOTES);
                $PassConf = htmlspecialchars(preg_replace($search, '', $_POST['passconf']), ENT_QUOTES);
                $Email          = htmlspecialchars(preg_replace($search, '', $_POST['email']), ENT_QUOTES);
                $ip = $_SERVER['REMOTE_ADDR'];
                $Username = mysql_real_escape_string($Username);
                $Password = mysql_real_escape_string($Password);
                $PassConf = mysql_real_escape_string($PassConf);
                $Email          = mysql_real_escape_string($Email);
                $HTML .= "<p>";
                if ($AllowTBC && !$ForceTBC)
                {
                        $TBC = htmlspecialchars(preg_replace($search, '', $_POST['tbc']), ENT_QUOTES);
                }
                $Continue = true;
                if ($Username == null || $Username == "")
                {
                        $HTML .="<br /><b> You must enter a username!</b>";
                        $Continue = false;
                }
                if ($Password == null || $Password == "")
                {
                        $HTML .="<br /><b> You must enter a password!</b>";
                        $Continue = false;
                }
                if ($PassConf == null || $PassConf == "")
                {
                        $HTML .="<br /><b> You must enter a confirmation password!</b>";
                        $Continue = false;
                }
                if ($PassConf != $Password)
                {
                        $HTML .="<br /><b> Your passwords did not match!</b>";
                        $Continue = false;
                }
                if ($Email == null || $Email == "")
                {
                        $HTML .="<br /><b> You must enter an e-mail!</b>";
                        $Continue = false;
                }
                // check if already registered.
                $UserCheck = mysql_query("SELECT login FROM accounts WHERE login = '$Username'");
                if (mysql_num_rows($UserCheck) > 0)
                {
                        $HTML .= "<br /><b> This username is already registered, please select another</b>";
                        $Continue = false;
                }
                // Check if this IP has more than the accounts per IP limit
                $UserCheck = mysql_query("SELECT login FROM accounts WHERE lastip = '$ip'");
                if (mysql_num_rows($UserCheck) > $AccsPerIP)
                {
                        $HTML .= "<br /><b> You have reached your maximum amount of accounts, which is currently: $AccsPerIP </b>";
                        $Continue = false;
                }
                // Check to make sure the e-mail is valid
                if (!ereg("^([a-zA-Z0-9_\-\.]+)@([a-zA-Z0-9_\-\.]+)\.([a-zA-Z]{2,5})$",$Email))
                {
                        $HTML .= "<br /><b> You have entered an invalid e-mail! E-Mails should be in the form [email protected]</b>";
                        $Continue = false;
                }
                $HTML .= "</p>";
                if ($Continue)
                {
                        // Register the account.
                        if ($ForceTBC)
            {
                $Flag = 24;
            } else if ($AllowTBC)
            {
                if ($TBC)
                {
                    $Flag = 24;
                } else
                {
                    $Flag = 0;
                }
                        }
                        mysql_query("INSERT INTO `accounts` (`login`,`password`,`email`,`lastip`,`gm`,`banned`,`flags`) VALUES ('$Username','$Password','$Email','$ip','0','0','24')")
                                                or die("Error creating your character!");
                        // Check to make sure it was actually registered
                        $Check = mysql_query("SELECT login FROM accounts WHERE login = '$Username'");
                        $HTML .= "<p>";
                        if (mysql_num_rows($Check) == 1)
                        {
                                $HTML .= "<br />Your account was registered!<br><b>It may take up to 5 to 10 min before to become active</b>
                        <br>
                <a href=http://notoriouswow.no-ip.org/forum/viewthread.php?forum_id=2&thread_id=26 target=''>Need Help Connecting? Click Here For The Connection Guide!</a>";
                        } else
                        {
                                $HTML .= "<br />There was an error registering your account!";
                        }
                        $HTML .= "</p>";
                } else
                {
                        $HTML .= "<fieldset>";
                        $HTML .= "<legend> Create Account </legend>";
                        if ($ShowWarning)
                        {
                                $HTML .= "<fieldset><legend> Warning: </legend>";
                                        $HTML .= "For your accounts security, please do not make your username, or password the same as any other";
                                        $HTML .= "<br /> account information you use on another website, dispite what people say, it <b>is</b> possible";
                                        $HTML .= "<br /> for people to recover your account information. Thank you.";
                                $HTML .= "</fieldset>";
                        }
                        $HTML .= "<form method='post' action='game_acc.php?m=submit'>";
                        $HTML .= "<table cellspacing = '0' cellpadding = '0' border = '0'>";
                                $HTML .= "<tr><td>Username:</td><td> <input type='text' name='Username' id='Username' /></td></tr>";
                                $HTML .= "<tr><td>Password:</td><td> <input type='password' name='password' id='password' /></td></tr>";
                                $HTML .= "<tr><td>Retype Password:</td><td> <input type='password' name='passconf' id='passconf' /></td></tr>";
                                $HTML .= "<tr><td>E-Mail:</td><td> <input type='text' name='email' id='email' /></td></tr>";
                                // Get the TBC settings.
                                if ($AllowTBC && !$ForceTBC)
                                {
                                        $HTML.= "";
                                }
                                $HTML .= "<tr><td></td><td><input type='submit' /></td></tr>";
                        $HTML .= "</table>";
                        $HTML .= "</form>";
                        $HTML .= "</fieldset>";
                }
        } else if (!$AllowReg)
        {
                $HTML .= "<p><b> Sorry, but registration is currently closed, please try again later </b></p>";
        }
        $HTML .= "</body></html>";
        
        echo $HTML;
        mysql_close($Con);
        
?>
</div>
<div class="container_bottom">
</div>
</body>
</html>
<?php mysql_close; ?>

</center>

<?php

mysql_connect("$db_host",

"$db_user","$db_pass");

mysql_select_db("$db_name");

?> 


<?php
require_once "footer.php";
?>

Link to comment
https://forums.phpfreaks.com/topic/172651-accepting-terms-and-conditions/
Share on other sites

That's very interesting, however

1. What part you stuck on?

2. What does this have to do with Regular expressions ?

3. What with the initial word caps?

4. Sorry I am not going to read all that code.

5. I'm moving this to Third Party PHP Scripts (help with a script someone else wrote)

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.