Jump to content

Chidori Soul

Members
  • Posts

    20
  • Joined

  • Last visited

    Never

Everything posted by Chidori Soul

  1. Well, from my experience using it, it enters the user, then reruns the script and says that the username is taken.
  2. Well, in my way, you do this. $query = mysql_query("SELECT * FROM `users` WHERE `user_id`='$user'"); $result = mysql_fetch_array($query); if($_GET['points'] == 'increase') { //increase the count. $update = $result['count'] + 1; } elseif($_GET['points'] == 'decrease') { //decrease the count. $update = $result['count'] - 1; } $update = mysql_query("UPDATE `users` SET `count`='$update' WHERE `user_id`='$user'");
  3. I would recommend reducing your double-query + PHP processing to a single query: $update = mysql_query("UPDATE users SET count = count+1 WHERE user_id='$user'"); And, for God's sake, never use a SELECT * if you're not going to work with ALL the columns. It's inefficient. I know, I was just trying to provide an alternate solution to his problem, sometimes the longer ways function a bit better.
  4. Well, I'm not sure if this will help, but to what I normally do, your update query for setting the count is missing something. I'm not sure if your way works or not, but try this. $query = mysql_query("SELECT * FROM `users` WHERE `user_id`='$user'"); $result = mysql_fetch_array($query); $count = $result['count'] + 1; //If its decreasing, replace it with minus, etc $update = mysql_query("UPDATE `users` SET `count`='$count' WHERE `user_id`='$user'"); Same with you checking count from the users table, you could do it a different way. $query1 = mysql_query("SELECT * FROM `users` WHERE `user_id`='$user'"); $result1 = mysql_fetch_array($query1); $points = $result1['count']; echo "This user has ".$count." points."; //etc I'm not exactly sure if this will help, but its the best I can think of.
  5. <?php session_start(); require('require/connect.php'); require('require/clean_code.php'); $name = safe($_GET['user']); if(isset($_GET['user'])) { $pass = safe($_GET['pass']); $email = safe($_GET['email']); $gender = safe($_GET['gender']); $class = safe($_GET['type']); if($name=='') { echo "Please enter a name."; } elseif($pass=='') { echo "Please enter a password."; } elseif($email=='') { echo "Please enter an email."; } elseif($gender != "Male" && $gender != "Female") { echo "Please choose a legit gender."; } elseif($class != "Warrior" && $class != "Mage") { echo "Please choose a legit class."; } else { $q = mysql_query("SELECT * FROM `users` WHERE `name`='".$name."'"); $c = mysql_num_rows($q); $q1 = mysql_query("SELECT * FROM `users` WHERE `email`='".$email."'"); $c1 = mysql_num_rows($q1); if($c > 0) { echo "This name is already in use."; } elseif($c1 > 0) { echo "This email is already in use."; } else { $pass2 = sha1($pass); mysql_query("INSERT INTO `users` (`name`, `pass`, `email`, `type`, `gender`) VALUES ('".$name."', '".$pass2."', '".$email."', '".$class."', '".$gender."')") or die(mysql_error()); echo "You have successfuly registered, ".$name."."; } } } else { ?> <head> <script type='text/javascript' src='require/jquery.js'></script> <script type='text/javascript' src='require/main.js'></script> <script type='text/javascript'> function function1() { var user = window.document.reg.user.value; var pass = window.document.reg.password.value; var email = window.document.reg.email.value; var gender = window.document.reg.gender.value; var class = window.document.reg.class.value; var url = "reg.php?user=" + user + "&pass=" + pass + "&email=" + email + "&gender=" + gender + "&type=" + class + ""; loadlink(url); } </script> </head> TestRegister <form name='reg' onsubmit='return function1();'> <table width='98%' style='border: 1px solid black;' valign='top' align='center'> <tr><td width='30%' style='border: 1px solid black;'>Username</td><td width='70%' style='border: 1px solid black;'><input type="text" name="user"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Password</td><td width='70%' style='border: 1px solid black;'><input type="password" name="password"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Email</td><td width='70%' style='border: 1px solid black;'><input type="text" name="email"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Gender</td><td width='70%' style='border: 1px solid black;'><select name="gender"><option value="Male">Male</option><option value="Female">Female</option></select></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Class</td><td width='70%' style='border: 1px solid black;'><select name="class"><option value="Warrior">Path Of Swordsmen</option><option value="Mage">Guidance Of Magician</option></select></td></tr> <tr><td width='30%' colspan='2' style='border: 1px solid black;'><input type='submit' name='submit' value='Register!' onclick='function1();'></td></tr> </table> </form> <?php } ?> I did that, and still, the same result, I think it has something to do with my AJAX.
  6. Alright, so I'm doing a pure dynamic AJAX site, and i've been on a register script for 2 days now, and for some reason, something about it makes it weird. <?php session_start(); require('require/connect.php'); require('require/clean_code.php'); $name = safe($_GET['user']); if(isset($_GET['user'])) { $pass = safe($_GET['pass']); $email = safe($_GET['email']); $gender = safe($_GET['gender']); $class = safe($_GET['type']); if($name=='') { echo "Please enter a name."; } elseif($pass=='') { echo "Please enter a password."; } elseif($email=='') { echo "Please enter an email."; } elseif($gender != "Male" && $gender != "Female") { echo "Please choose a legit gender."; } elseif($class != "Warrior" && $class != "Mage") { echo "Please choose a legit class."; } else { $q = mysql_query("SELECT * FROM `users` WHERE `name`='".$name."'"); $c = mysql_num_rows($q); $q1 = mysql_query("SELECT * FROM `users` WHERE `email`='".$email."'"); $c2 = mysql_num_rows($q1); if($c > '0') { echo "This name is already in use."; } elseif($c1 > '0') { echo "This email is already in use."; } else { $pass2 = sha1($pass); mysql_query("INSERT INTO `users` (`name`, `pass`, `email`, `type`, `gender`) VALUES ('".$name."', '".$pass2."', '".$email."', '".$class."', '".$gender."')") or die(mysql_error()); echo "You have successfuly registered, ".$name."."; } } } else { ?> <head> <script type='text/javascript' src='require/jquery.js'></script> <script type='text/javascript' src='require/main.js'></script> <script type='text/javascript'> function function1() { var user = window.document.reg.user.value; var pass = window.document.reg.password.value; var email = window.document.reg.email.value; var gender = window.document.reg.gender.value; var class = window.document.reg.class.value; var url = "reg.php?user=" + user + "&pass=" + pass + "&email=" + email + "&gender=" + gender + "&type=" + class + ""; loadlink(url); } </script> </head> TestRegister <form name='reg' onsubmit='return function1();'> <table width='98%' style='border: 1px solid black;' valign='top' align='center'> <tr><td width='30%' style='border: 1px solid black;'>Username</td><td width='70%' style='border: 1px solid black;'><input type="text" name="user"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Password</td><td width='70%' style='border: 1px solid black;'><input type="password" name="password"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Email</td><td width='70%' style='border: 1px solid black;'><input type="text" name="email"></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Gender</td><td width='70%' style='border: 1px solid black;'><select name="gender"><option value="Male">Male</option><option value="Female">Female</option></select></td></tr> <tr><td width='30%' style='border: 1px solid black;'>Class</td><td width='70%' style='border: 1px solid black;'><select name="class"><option value="Warrior">Path Of Swordsmen</option><option value="Mage">Guidance Of Magician</option></select></td></tr> <tr><td width='30%' colspan='2' style='border: 1px solid black;'><input type='submit' name='submit' value='Register!' onclick='function1();'></td></tr> </table> </form> <?php } ?> If you tried this, it would be successful, but it would say that the username is already registered, so it really lies. Can someone point out the error on this AJAX/PHP?
  7. Thats the Login Page
  8. That is the code that I use for my register page I already did, there should be nothing wrong with it
  9. I still don't get what is up with my code, it should work perfectly, I have checked everything, and it should work >_>
  10. Yes, passwords are encrypted in my database, but what does sha1 have to do with this?
  11. Hey, I am making a Login code, and everything is complete, but it is not working properly. The error is this: Even though I enter everything correctly, it always says that the password is incorrect? My code is this: <?php session_start(); require_once 'db.php'; $page_mode = isset($_POST['page_mode']) ? $_POST['page_mode'] : ''; $error_string = ''; if ($page_mode == 'login') { $name = $_POST['name']; $password = $_POST['password']; if (trim($name) == '' || trim($password) == '') $error_string .= 'Please enter your username and password.<br>'; else { $result = db_query("SELECT id, name, password FROM users WHERE name='" . mysql_real_escape_string($name) . "'"); if (!($row = mysql_fetch_assoc($result))) $error_string .= 'The username was not found.<br>'; else if ($row['password'] != sha1($password)) $error_string .= 'The password does not match the username provided.<br>'; else { $_SESSION['user_id'] = $row['id']; $_SESSION['user_name'] = $row['name']; header('Location: index.php'); exit(); } } } ?> <html><center> <head> <title>Pokemon Planet - Version 0.1</title> <link rel='stylesheet' type='text/css' href='stylesheet.css'> <body><div class="error_text"><?php echo $error_string; ?></div> <div id="container"> <div id="banner"></div> <div id="frame"> <div id="leftmenu"><div style="padding: 3px;"> <center><b>General Options</b><br/><a href='index.php'>Index</a><br/><a href='register.php'>Register</a><br/><a href='login.php'>Login</a></center> </div></div> <div id="content"><div style="padding: 3px;"> <center><u>Login!</u><br/>Here you can login to access the RPG, but you have to have already <a href='register.php'>registered</a>.<br/><br/><form action="login.php" method="post"><input type="hidden" name="page_mode" value="login"><b>Username:</b><br/><input type="text" name="name" size="20" maxlength="255" value="<?php if (isset($name)) echo $name; ?>"><br/><br/><b>Password:</b><br/><input type="password" name="password" size="20"><br/><input type="submit" value="Log In" size="30"></center> </div></div> <div id="rightmenu"><div style="padding: 3px;"> <center><b>General Options</b><br/><a href='index.php'>Index</a><br/><a href='register.php'>Register</a><br/><a href='login.php'>Login</a></center> </div></div> </div> <div id="footer"><center><font color='#000000'>Pokemon Planet is © 2009 by Shadow. This site is created and coded by Shadow. Pokemon Planet is in no way affiliated with Nintendo, Pokémon Company, Game Freak, Creatures, or any related organizations. Most Pokémon images (sprites, icons, map tiles, etc.) are © Nintendo and their publishers. Images are slightly modified in order to meet certain needs upon this website.</font></center></div> </div></body></center> </html>
  12. Oh, Thanks! Now, I just need to know on how to make one page for each user, and have it add another ID for each user registered like this: profile.php?id=1 now, if ID 2 registers, they could click View Profile, and it would be: profile.php?id=2, and if ID 3 clicks it...etc Would this have to do with Cookies or Sessions?
  13. Axeia: I did look through that and the Source Code, and I did not find those errors in my original code. DarKsuperHero: I know, someone says that it is based on this statement: if (isset($_POST['submit'])) { but, I can not find where I would replace it for the CSS to come back and work
  14. haku: I am reading through a book about it right now, and that, but I can't seem to find the information I am looking for Ken2k7: I have the table set up, I just need to know how to read it then display the information gathered from the table.
  15. Ok, I am trying to make a User Profile, and I heard that you could just create one page, that shows what you need with reading the Table based on each user. Now, I just need to figure out how to do that, please help
  16. Ok, so my register Page works fine, but the only problem is that if I remove the PHP off of the page, it turns normal, but if I put the PHP on it, it messes up the stylesheet. My Register Page Easier, my code: <?php // Connects to your Database mysql_connect("fdb1.awardspace.com", "chidorisoul_sh", "******") or die(mysql_error()); mysql_select_db("chidorisoul_sh") 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); ?> <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html> <head> <title>Register</title> <style type="text/css"> <!-- body,td,th { color: #FF0000; font-family: Tahoma; font-size: 9px; font-weight: bold; } body { background-color: #000000; } .thead { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; vertical-align: middle; height: 15px; } .tnav { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 15px; } .tnav2 { background: #302226; border: 1px solid #000000; border-bottom: 1px solid black; text-align: center; height: 15px; } .news { background: #302226; border: 1px solid #000000; border-bottom: 1px solid #000000; text-align: center; height: 15px; } .banner { border-bottom: 0px; } .dis { border-top: 0px; } .con { border-top: 0px; border-bottom: 0px; } .party { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 25px; } a:link { color: #990000; text-decoration: none; } a:visited { text-decoration: none; color: #990000; } a:active { text-decoration: none; color: #FFFFFF; } .style1 {color: #FFFFFF} --> </style> <body> <table align="center" width="200" height="247" border="0" cellpadding="0" cellspacing="0" bordercolor="#FF0000"> <tr> <td align="left" valign="top"><table width="802" height="120" border="1" cellpadding="0" cellspacing="0" bordercolor="#FF0000" class="banner"> <tr> <th background="http://i286.photobucket.com/albums/ll84/ChidoriSoul/BetterAsteroidBanner.png?t=1243111409" scope="col"> </th> </tr> </table> <table width="802" height="120" border="1" cellpadding="0" cellspacing="0" bordercolor="#FF0000" class="con"> <tr> <!--- Ads --> <div style="text-align: center"><script type="text/javascript"><!-- google_ad_client = "pub-4468899317544238"; /* TPARPG */ google_ad_slot = "0388012058"; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type="text/javascript" src="http://pagead2.googlesyndication.com/pagead/show_ads.js"> </script></div> <!--- End of Ads --> <!--- Left Nav --> <th width="122" align="center" valign="top" bgcolor="#302226" scope="row"> <div class="thead style1" id="thead"> <font color='limegreen'>General Options</font> </div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/home.php"><font color='blue'>Home</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/register.php"><font color='blue'><del>Register</del></font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/login.php"><font color='blue'><del>Login</del></font></a></div> <div class="thead style1" id="thead"> <font color='limegreen'>Miscellaneous</font> </div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/about.php"><font color='blue'>About TPA</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/storyline.php"><font color='blue'>Storyline</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/chatbox.php"><font color='blue'>Chatbox</font></a></div> <div class="tnav"> <a href="http://www.punbb-hosting.com/forums/TPA_Forums/index.php"><font color='blue'>Forum</font></a></div> <div class="thead style1" id="thead"> <font color='limegreen'>Statistics</font> </div> <div class="tnav"> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Left Nav --> <!--- Start Content --> <th width="520" align="center" valign="top" bgcolor="#302226" scope="row"> <div class="news" id="thead"> Index </div> <br /> <?php } else { ?> <form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post"> <table border="0"> <tr><td>Username:</td><td> <input type="text" name="username" maxlength="60"> </td></tr> <tr><td>Password:</td><td> <input type="password" name="pass" maxlength="10"> </td></tr> <tr><td>Confirm Password:</td><td> <input type="password" name="pass2" maxlength="10"> </td></tr> <tr><th colspan=2><input type="submit" name="submit" value="Register"></th></tr> </table> </form> <?php } ?> <!--- End Content --> <!--- Right Nav --> <th width="122" align="center" valign="top" bgcolor="#302226" scope="row"> <div class="thead style1" id="thead"> <font color='limegreen'>General Options</font> </div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/home.php"><font color='blue'>Home</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/register.php"><font color='blue'><del>Register</del></font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/login.php"><font color='blue'><del>Login</del></font></a></div> <div class="thead style1" id="thead"> <font color='limegreen'>Miscellaneous</font> </div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/about.php"><font color='blue'>About TPA</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/storyline.php"><font color='blue'>Storyline</font></a></div> <div class="tnav"> <a href="http://tparpg.awardspace.co.uk/chatbox.php"><font color='blue'>Chatbox</font></a></div> <div class="tnav"> <a href="http://www.punbb-hosting.com/forums/TPA_Forums/index.php"><font color='blue'>Forum</font></a></div> <div class="thead style1" id="thead"> <font color='limegreen'>Statistics</font> </div> <div class="tnav"> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Right Nav --> <!--- Disclaimer --> <table width="765" height="45" border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#FF0000" "backgroundcolor="#302226" class="dis"> <tr> <td align="center" valign="top"><strong>Disclaimer</strong><br /> The Pokémon Asteroid RPG is © owned and coded by Shadow. All sprites are Copyrighted 2009 Pokémon © Nintendo, Game Freak, Creatures Ink all rights reserved. The Asteroid RPG is not affiliated with the organizations listed above or any other organizations that have co-operated or are co-operating in the programming or making of Pokémon. The images are copyright of their respective owners. This RPG is best viewed with Firefox. </td> </tr> </table></a></div> <!--- End of Disclaimer -->
  17. Ok, so I am running an online RPG, and I am trying to have the same index page, but it is different to logged in and out users. As for now, my code is: <?php // Connects to your Database mysql_connect("fdb1.awardspace.com", "chidorisoul_sh", "******") or die(mysql_error()); mysql_select_db("chidorisoul_sh") or die(mysql_error()); //checks cookies to make sure they are logged in if(isset($_COOKIE['ID_my_site'])) { $username = $_COOKIE['ID_my_site']; $pass = $_COOKIE['Key_my_site']; $check = mysql_query("SELECT * FROM users WHERE username = '$username'")or die(mysql_error()); while($info = mysql_fetch_array( $check )) { //if the cookie has the wrong password, they are taken to the login page if ($pass != $info['password']) { header("Location: index.php"); } //otherwise they are shown the admin area else { echo "<!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='eng'> <head> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' /> <title>The Pokemon Asteroid -- Online RPG by Shadow - Made by Shadow</title> <style type='text/css'> <!-- body,td,th { color: #FF0000; font-family: Tahoma; font-size: 9px; font-weight: bold; } body { background-color: #000000; } .thead { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; vertical-align: middle; height: 15px; } .tnav { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 15px; } .tnav2 { background: #302226; border: 1px solid #000000; border-bottom: 1px solid black; text-align: center; height: 15px; } .news { background: #302226; border: 1px solid #000000; border-bottom: 1px solid #000000; text-align: center; height: 15px; } .banner { border-bottom: 0px; } .dis { border-top: 0px; } .con { border-top: 0px; border-bottom: 0px; } .party { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 25px; } a:link { color: #990000; text-decoration: none; } a:visited { text-decoration: none; color: #990000; } a:active { text-decoration: none; color: #FFFFFF; } .style1 {color: #FFFFFF} --> </style></head> <body> <table align='center' width='200' height='247' border='0' cellpadding='0' cellspacing='0' bordercolor='#FF0000'> <tr> <td align='left' valign='top'><table width='802' height='120' border='1' cellpadding='0' cellspacing='0' bordercolor='#FF0000' class='banner'> <tr> <th background='http://tparpg.awardspace.co.uk/images/TPABanner.png' scope='col'> </th> </tr> </table> <table width='802' height='120' border='1' cellpadding='0' cellspacing='0' bordercolor='#FF0000' class='con'> <tr> <!--- Ads --> <div style='text-align: center'><script type='text/javascript'><!-- google_ad_client = 'pub-4468899317544238'; /* TPARPG */ google_ad_slot = '0388012058'; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'> </script></div> <!--- End of Ads --> <!--- Left Nav --> <th width='122' align='center' valign='top' bgcolor='#302226' scope='row'> <div class='thead style1' id='thead'> <font color='limegreen'>General Options</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/index.php'><font color='blue'>Index</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/logout.php'><font color='blue'>Logout</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Miscellaneous</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/about.php'><font color='blue'>About TPA</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/storyline.php'><font color='blue'>Storyline</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/chatbox.php'><font color='blue'>Chatbox</font></a></div> <div class='tnav'> <a href='http://www.punbb-hosting.com/forums/TPA_Forums/index.php'><font color='blue'>Forum</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Statistics</font> </div> <div class='tnav'> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Left Nav --> <th width='520 align='center' valign='top' bgcolor='#302226' scope='row'> <div class='news' id='thead'> Index </div> <br /> <br/> <table width='100%' border='1'> <tr> <th>Avatar</th> <th>News</th> </tr> <tr> <td width='25%'><center><img src='http://tparpg.awardspace.co.uk/images/SapphireNinetails.png' alt='Sapphire Ninetails' /></center></td> <td width='75%'><center>Register and Login are both finished, just, I need to update this page, so it makes more sense for people that are logged out</center></td> </tr> </table> <!--- Right Nav --> <th width='122' align='center' valign='top' bgcolor='#302226' scope='row'> <div class='thead style1' id='thead'> <font color='limegreen'>General Options</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/index.php'><font color='blue'>Index</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/logout.php'><font color='blue'>Logout</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Miscellaneous</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/about.php'><font color='blue'>About TPA</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/storyline.php'><font color='blue'>Storyline</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/chatbox.php'><font color='blue'>Chatbox</font></a></div> <div class='tnav'> <a href='http://www.punbb-hosting.com/forums/TPA_Forums/index.php'><font color='blue'>Forum</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Statistics</font> </div> <div class='tnav'> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Right Nav --> <!--- Disclaimer --> <table width='765' height='45' border='1' align='center' cellpadding='0' cellspacing='0' bordercolor='#FF0000' backgroundcolor='#302226' class='dis'> <tr> <td align='center' valign='top'><strong>Disclaimer</strong><br /> The Pokémon Asteroid RPG is © owned and coded by Shadow. All sprites are Copyrighted 2009 Pokémon © Nintendo, Game Freak, Creatures Ink all rights reserved.The Asteroid RPG! is not affiliated with the organizations listed above or any other organizations that have co-operated or are co-operating in the programming or making of Pokémon. The images are copyright of their respective owners. This RPG is best viewed with Firefox. </td> </tr> </table></a></div> <br /> <!--- End Of Disclaimer -->"; echo ""; echo ""; } } } else //if the cookie does not exist, they are shown the logged out screen of the index page { "<!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='eng'> <head> <meta http-equiv='Content-Type' content='text/html; charset=iso-8859-1' /> <title>The Pokemon Asteroid -- Online RPG by Shadow - Made by Shadow</title> <style type='text/css'> <!-- body,td,th { color: #FF0000; font-family: Tahoma; font-size: 9px; font-weight: bold; } body { background-color: #000000; } .thead { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; vertical-align: middle; height: 15px; } .tnav { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 15px; } .tnav2 { background: #302226; border: 1px solid #000000; border-bottom: 1px solid black; text-align: center; height: 15px; } .news { background: #302226; border: 1px solid #000000; border-bottom: 1px solid #000000; text-align: center; height: 15px; } .banner { border-bottom: 0px; } .dis { border-top: 0px; } .con { border-top: 0px; border-bottom: 0px; } .party { background: #302226; border: 1px solid #000000; border-bottom: 0px; text-align: center; height: 25px; } a:link { color: #990000; text-decoration: none; } a:visited { text-decoration: none; color: #990000; } a:active { text-decoration: none; color: #FFFFFF; } .style1 {color: #FFFFFF} --> </style></head> <body> <table align='center' width='200' height='247' border='0' cellpadding='0' cellspacing='0' bordercolor='#FF0000'> <tr> <td align='left' valign='top'><table width='802' height='120' border='1' cellpadding='0' cellspacing='0' bordercolor='#FF0000' class='banner'> <tr> <th background='http://tparpg.awardspace.co.uk/images/TPABanner.png' scope='col'> </th> </tr> </table> <table width='802' height='120' border='1' cellpadding='0' cellspacing='0' bordercolor='#FF0000' class='con'> <tr> <!--- Ads --> <div style='text-align: center'><script type='text/javascript'><!-- google_ad_client = 'pub-4468899317544238'; /* TPARPG */ google_ad_slot = '0388012058'; google_ad_width = 728; google_ad_height = 90; //--> </script> <script type='text/javascript' src='http://pagead2.googlesyndication.com/pagead/show_ads.js'> </script></div> <!--- End of Ads --> <!--- Left Nav --> <th width='122' align='center' valign='top' bgcolor='#302226' scope='row'> <div class='thead style1' id='thead'> <font color='limegreen'>General Options</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/index.php'><font color='blue'>Index</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/register.php'><font color='blue'>Register</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/login.php'><font color='blue'>Login</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Miscellaneous</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/about.php'><font color='blue'>About TPA</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/storyline.php'><font color='blue'>Storyline</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/chatbox.php'><font color='blue'>Chatbox</font></a></div> <div class='tnav'> <a href='http://www.punbb-hosting.com/forums/TPA_Forums/index.php'><font color='blue'>Forum</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Statistics</font> </div> <div class='tnav'> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Left Nav --> <th width='520 align='center' valign='top' bgcolor='#302226' scope='row'> <div class='news' id='thead'> Index </div> <br /> <br/> <table width='100%' border='1'> <tr> <th>News</th> </tr> <tr> <td width='100%'><center><strong>Welcome to The Pokemon Asteroid RPG!</strong></center> <br/>Welcome to TPARPG. Here you can do many things such as, Search in Legendary Maps, do daily tasks, get the often promotional pokemon, get Daily Prizes, and do many more exciting things.</td> </tr> </table> <!--- Right Nav --> <th width='122' align='center' valign='top' bgcolor='#302226' scope='row'> <div class='thead style1' id='thead'> <font color='limegreen'>General Options</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/index.php'><font color='blue'>Index</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/register.php'><font color='blue'>Register</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/login.php'><font color='blue'>Login</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Miscellaneous</font> </div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/about.php'><font color='blue'>About TPA</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/storyline.php'><font color='blue'>Storyline</font></a></div> <div class='tnav'> <a href='http://tparpg.awardspace.co.uk/chatbox.php'><font color='blue'>Chatbox</font></a></div> <div class='tnav'> <a href='http://www.punbb-hosting.com/forums/TPA_Forums/index.php'><font color='blue'>Forum</font></a></div> <div class='thead style1' id='thead'> <font color='limegreen'>Statistics</font> </div> <div class='tnav'> <font color='blue'>Total Users: 0</font></div> </th> <!--- End Of Right Nav --> <!--- Disclaimer --> <table width='765' height='45' border='1' align='center' cellpadding='0' cellspacing='0' bordercolor='#FF0000' backgroundcolor='#302226' class='dis'> <tr> <td align='center' valign='top'><strong>Disclaimer</strong><br /> The Pokémon Asteroid RPG is © owned and coded by Shadow. All sprites are Copyrighted 2009 Pokémon © Nintendo, Game Freak, Creatures Ink all rights reserved.The Asteroid RPG! is not affiliated with the organizations listed above or any other organizations that have co-operated or are co-operating in the programming or making of Pokémon. The images are copyright of their respective owners. This RPG is best viewed with Firefox. </td> </tr> </table></a></div> <br /> <!--- End Of Disclaimer -->"; } ?>
  18. I have, didn't work, tried everything, didn't work, I just don't get how to do those 2 questions that I stated above
  19. come on, I really need this script finished
  20. Ok, so I am a RPG designer, and I need to ask one last question (or usually more) so I can finish the Register Page. 1. I have made the table for my Register Page, now what code do I input to my Register Page for it to work. My Table Screenshot Now, I just really need the code I put into the page, but I have no idea on what that would be, can anyone help me? 2. When a User Registers, how can I make it so that the table stores the information, and saves them for that users profile. So, the table automatically updates and they can Login?
×
×
  • 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.