Questions on the videos

Location of the Videos
zolacat999
Posts: 62
Joined: Tue Nov 24, 2009 11:09 pm

Re: Questions on the videos

Post by zolacat999 »

Ah i completely changed mine now but it works and I learnt alot in the process my new code is

Code: Select all

<?php
include_once 'connect.php';
session_start();

if (isset($_POST['submit']))
{
  $player=$_POST['player'];
  $password=$_POST['password'];
  $player=strip_tags($player);
  $password=strip_tags($password);
  

  $query = "select name,password from players where name='$player' and password='".md5($_POST['password'])."'";
  $result = mysql_query($query) or die("Could not query players");
  $result2 = mysql_fetch_array($result);
  if ($result2)
  { 
    $_SESSION['player']=$player;
    
    echo "<big>Logged in successfully<br>";
    echo "<A href='index.php'>Continue</a></big>";
  }
  else
  {
   echo "<big>Wrong username or password.<A href='login.php'>Try Again</a></big>";
  }
}
?>
i moved the md5 around etc, it seems to work ok now for me anyway
zolacat999
Posts: 62
Joined: Tue Nov 24, 2009 11:09 pm

Re: Questions on the videos

Post by zolacat999 »

Am i just missing it or does video 12 not exsist
User avatar
Jackolantern
Posts: 10893
Joined: Wed Jul 01, 2009 11:00 pm

Re: Questions on the videos

Post by Jackolantern »

zolacat999 wrote:Am i just missing it or does video 12 not exsist
It is the only thread on page 2.
The indelible lord of tl;dr
zolacat999
Posts: 62
Joined: Tue Nov 24, 2009 11:09 pm

Re: Questions on the videos

Post by zolacat999 »

Oh there it is :lol: thanks
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Questions on the videos

Post by hallsofvallhalla »

new videos on the way!
ZeroComp
Posts: 648
Joined: Thu Oct 29, 2009 8:48 pm

Re: Questions on the videos

Post by ZeroComp »

WOOT!!!
Coding-PHP, Javascript, C++, HTML, mySQL
Modeling/Art-Blender, GIMP
Games-Unity, Game Maker 8
rowinboc
Posts: 12
Joined: Fri Jan 15, 2010 9:31 pm

Re: Questions on the videos

Post by rowinboc »

hallsofvallhalla wrote:new videos on the way!
YEEEEEEEEEEEEEEEEEEEEEEEEEEEES!
When are they uploaded??????????
ZeroComp
Posts: 648
Joined: Thu Oct 29, 2009 8:48 pm

Re: Questions on the videos

Post by ZeroComp »

rowinboc wrote:
hallsofvallhalla wrote:new videos on the way!
YEEEEEEEEEEEEEEEEEEEEEEEEEEEES!
When are they uploaded??????????
Whenever he feels like it :)
Coding-PHP, Javascript, C++, HTML, mySQL
Modeling/Art-Blender, GIMP
Games-Unity, Game Maker 8
User avatar
hallsofvallhalla
Site Admin
Posts: 12031
Joined: Wed Apr 22, 2009 11:29 pm

Re: Questions on the videos

Post by hallsofvallhalla »

very soon, very soon
rowinboc
Posts: 12
Joined: Fri Jan 15, 2010 9:31 pm

Re: Questions on the videos

Post by rowinboc »

hallsofvallhalla wrote:very soon, very soon
Thanks man!! waiting for them!!
Post Reply

Return to “Older Browser MMO Videos”