Jul 26, 2008

Php Login Script - Removing the login field once the user logs in

Free Web Hosting, No Ads > CONTRIBUTE > Computers > Programming Languages > PHP Programming
Pages: 1, 2

free web hosting

Php Login Script - Removing the login field once the user logs in

fffanatics
Hey everyone. I have a login script that i know works. My question is that on my main page, it have a form to allow the user to log in. What i want it to do is that once the user logs in, the form disappears and the users data (aka username) is displayed where the form was. At the moment i cant get it to work. Below is my code.

CODE
<div id="loginMenu">
 <?php
   if ($logged_in == 1)
   {
 ?>
    <!-- User information -->
 <?php
    }//if
    else
    {
 ?>
   
<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">
  <table border="0" cellspacing="1" cellpadding="0">
     <tr><td>Username: </td></tr>
     <tr><td><input type='text' name='uname' size='17'></td></tr>
     <tr><td>Password:</td></tr>
     <tr><td><input type='password' name='passwd' size='17'></td></tr>
     <tr><td><input type="submit" name="submit" value="Login"> <input type="submit" name="submit" value="Register"> </td></tr>
  </table>
</form>
   
<?php
  }//else
?>
</div>


What happens with this code is that it only will display the form because the user isnt logged in. If i refresh the page in IE it will then display it. There has to be a way to dynamically change it once the user submits the form. THanks for the help

Notice from snlildude87:
Use code tags for code. This is your warning.

 

 

 


Reply

mbd5882
I think you need a tag,
Or one of those other thingies which ashs a question,


Is user logged in?

Yes:
Welcome [username.]

No:
Display:
CODE
<div id="loginMenu">
<?php
if ($logged_in == 1)
{
?>
<!-- User information -->
<?php
}//if
else
{
?>

<form action="<?php echo $_SERVER['PHP_SELF']?>" method="post">
<table border="0" cellspacing="1" cellpadding="0">
<tr><td>Username: </td></tr>
<tr><td><input type='text' name='uname' size='17'></td></tr>
<tr><td>Password:</td></tr>
<tr><td><input type='password' name='passwd' size='17'></td></tr>
<tr><td><input type="submit" name="submit" value="Login"> <input type="submit" name="submit" value="Register"> </td></tr>
</table>
</form>

<?php
}//else
?>
</div>




Google it, On what whe script is, Or ask an admin.
I need a login page for my sit too, & in the end i just gave up.

Thanks,
FFC Webmaster,
Asad Haider.

Notice from snlildude87:
Use code tags for code. This is your warning.

 

 

 


Reply

fffanatics
OK thanks for the reply and sorry about not using the code tag. i didnt even notice that it was a tag so sorry.

What i was asking was that it would display the login box in the loginMenu div but once the user hits submit in the form, that the user logs in (which my script works) and then instead of showing the loginMenu, it would display the users information. Thats what the if (loggedIn) was for but what i think happens is when the user logs in, the page isnt refreshed so it doesnt even see whats in the if.

Hopefully someone can help. Thanks agian and sorry about not using the code tag

Reply

mbd5882
NO WAIT, SORRY! ohmy.gif
Put this on your index page,

-----------------------------------------------------------------------------------------------
CODE

<?

   session_start();

   $uid = $_SESSION['uid'];
   $pwd = $_SESSION['pwd'];

require('main.php');

db_connect();

include(INC_DIR."header.php");


 if ($uid){

  echo "<br>already logged in";

 } else {

  echo "<br><Span Class=emph>Members Log In</SPAN>";

      include(INC_DIR."login.php");

  echo "<Span Class=emph>Not a Member? Join Now!</SPAN>";

      include(INC_DIR."signup.php");

 }


include(INC_DIR."footer.php");

db_disconnect();

?>



-----------------------------------------------------------------------------------------------

Without the dashes, Youll have to configure all the variables, Like
'include(INC_DIR."footer.php");'


THIS IS DEFINETLY RIGHT, USE THIS BUT YOULL HAVE TOO DO IT.
Sorry for the mix-up.


Thanks,
FFC Webmaster,
Asad Haider.

Notice from Googlue:
This is your FINAL WARNING!!!
If you do not use [code][/code] tags to put in codes again, you will lose your facilities here!

Reply

mobious
i think fffanatics already has his own auth system. and his code works. i think it's with $logged_in not beeing assigned with the right value.

Reply

fffanatics
QUOTE
i think it's with $logged_in not beeing assigned with the right value


Yeah i know my auth system works cause i can produce a login script that works when on a separate page. However, who wants to change pages just to log in. It has to be with teh $logged_in variable. This is the order of operations that need to happen along with which ones work:

1.) Users enters fffanatics and decides to log in using the form (works - it is the else)

2.) THe user hits submit and is authenticated (works)

3.) Now instead of the form still being on the page, it should display the users information instead (doesnt work)

I just cant seem to get to form to go away after the user hits submit. Hopefully this clarifies the issue.

Reply

mobious
i belive that there is no way you can gather all the data about the user when he logs in and then display it with out another page or a script processes it. you have to make your script log the user in then redirect it again to the page with his details displayed.

Reply

alexia
I write this Easy Login in php and i want to learn to you how to write easy password login its sample of my code its not a user pass login
CODE
<?php
<?php
if(!$action)
{
print ("
<body bgcolor='#ffffff'>
Admin Panel - Set Quiz ::<P>
<form name='forum2' method='post' action='$PHP_SELF'>
<p>Password  <input type='text' name='password' size='20'>
<P><input name='Submit2' type='submit' value='Quiz'>
</form>");
$max = "my password";
if ($password == $max){
print ("
<body bgcolor='#ffffff'>
Admin Panel - Set Quiz ::<P>---- ///And then you can post and write your html tags of your html page here for display when password is true\\\\");
}
?>

its really easy
i write this password login for my online exam biggrin.gif

Reply

fffanatics
OK so if i understand all of you correctly, what i should do is have the user log in (run my log in script) and then redirect them to the correct page that would contani their information?

Reply

candicej
I have my website set up that after you go to the index page, you must log in to go futher. Once you log in, you are directed to another index page with a Welcome! script and member-specific info. When you set up your form to process, direct the form to a processing page that verifies your user then directs to a welcome page (a copy of your index) and modify that page to whatever welcome content you wish!

This is my form processing code:
CODE

<form action="checkuser.php" method="post">


In checkuser.php, after all variables have been checked and the user verified, I have this:
CODE
if($login_check > 0){
   while($row = mysql_fetch_array($sql)){
   foreach( $row AS $key => $val ){
       $$key = stripslashes( $val );
   }
       session_register('first_name');
       $_SESSION['first_name'] = $first_name;
       session_register('last_name');
       $_SESSION['last_name'] = $last_name;
       session_register('email_address');
       $_SESSION['email_address'] = $email_address;
       session_register('special_user');
       $_SESSION['user_level'] = $user_level;
       $_SESSION['auth'] = true;
       
       mysql_query("UPDATE users SET last_login=now() WHERE userid='$userid'");
       
       header("Location: welcome.php");

   }}
else {
   echo "<center><font color=red><strong>You could not be logged in! Either the username and password do not match or you have not validated your membership!<br />
   Please try again!</strong></font></center><br />";
   include 'index.php';
}


I hope some of this helps you. I know that was a huge chunk of code for just a little info, but I was afraid of leaving out something you might need. Good luck!

candicej

Reply

Latest Entries

fffanatics
Yes my code does work and i do actually use cookies. I use to cookies so that they have the option of not having to sign in for 2 weeks. However, this is the only information that is cantained in the cookie. Personally, i like sessions cause its very easy to use and is a secure way to send and recieve information from a page

Reply

Mike
Why not just use cookies to keep your users logged in? It's a lot easier using sessions, in my opinion. All you would have to do is add a new variable to the config file that is something like this:

CODE


$username = (isset($_COOKIE['user']) ? $_COOKIE['user'] : Guest);



login.php

CODE


<?php

# Include all the needed files

if (isset($_POST['login'])) {
   $uname = $_POST['username'];
   $pword = $_POST['password'];
   $check = mysql_query("SELECT username FROM users WHERE username='$uname' AND password='$pword'") or die(mysql_error());
   if (mysql_num_rows($check) == 0) {
        echo 'Invalid username or password';
        exit;
   } else {
       setcookie('user', $uname, time()+999999);
       setcookie('pword', $pword, time()+999999);
       echo 'You have successfully logged in!  Return to the <a href="/">index</a>.';
   }
} else {
   echo '';
   }

?>


Reply

fffanatics
Hey everyone thanks for your help. My login script works 100% now. The error was because i had a blank line after the ?> in the one file i included. Thanks for all of your great ideas and solutions

Reply

fffanatics
Hmmz thanks for the help but i am not looking to really rewrite a good amount of my code. I just was wondering if anyone knew how i could fix this error since it must be a small one if i dont get it on my server but do get it on the trap17 one

Reply

HmmZ
Instead of directing the user to the registration page right away , you could just echo that they are not registered and then give them a link to the registration page.

I am a newbie php'er, but:
CODE

<?
$register=$_POST['register'];
$login=$_POST['login'];

if($register){
echo "Please register first";
header("location: register.php");
}
else {
if($login){
$username=$_POST['username'];
$password=$_POST['password'];
$remember=$_POST['remember'];
}
if($remember==1){
          $member_class=check_login($username, $password, true);

echo "succesfully logged in, redirecting you";
header("location: membersarea.php");
}
else {            $member_class=check_login($username, $password, false);
echo "The username and/or password you provided is wrong";
header("location: login.php");
}
$logout=$_POST['logout'];
if($logout){
          $member_class=logout();
}
}


Its probably completely wrong (doh!) but it was worth a shot, what i dont understand is the use of ->, is that actually php? blink.gif


Reply



Got an Opinion! Express your Views! (no registration):-
Add your Reply/ Opinion/ Views/ Comments/ Suggestion/ Questions/ Queries etc.
Posts with decent grammar & English will be accepted and please refrain from profanities.
For asking a Question, We recommend you to sign-up (for free) so that you can track the topic easily.

Nature of your Post*: Opinion/ Reply/ Comments
Question/Query
Feedback to us.
       
Name   Email
Title/Question*

(Maximum characters: 10,000)
You have characters left.
Confirm Code:

Pages: 1, 2
Similar Topics

Keywords : php, login, script, removing, login, field, user, logs

  1. Php Guest Online Script
    (2)
  2. Can't Login To Any Software On My Site
    anyone know how to fix? (3)
    In a subdomain of my site I have an installation of MediaWiki, and until now it's been working
    fine. But today I've been having trouble with it. Previously, whenever I logged into MediaWiki
    it worked first time and I would stay logged in for about an hour, even without the "Remember Me"
    option checked. But I tried logging in now, and after logging me in, the next page I went to showed
    me as "not logged in". I cleared the cache as I know this has been a problem before, and then tried
    logging in again, but it still said I was not logged in! So I tried one more ....
  3. [chsupport #ecn-115724]: Ftp/cpanel Login Problem
    (7)
    Please take a look at this. Ticket ID: ECN-115724 Subject: FTP/Cpanel Login Problem Department: CH
    Support Thanks.....
  4. User Name
    blimey this is the hardest work ever (0)
    Hi, I knew nothing about chaos until I signed up (and paid for my web space Order #2486 >
    Invoice #6589) with you and I drive in London for a living ... 8 hours after sign up and still
    don't know whether my User name and password work on cPanel or anywhere on this site for that
    matter. I would suggest that the admin send out an introductory eMail on sign up with all our info
    and put a sticky on at the start page of the forum containing standard info for all users. Like FTP
    eMail and cPanel settings. The other thing that's fascinating is the 3 domains us....
  5. Phpizabi Social Network Script
    (1)
    Hello everyone not been on for AGES! we had net problems and i had to move to qupis and now
    I've got problems. I'm making a social networking site using this script and I cant get it
    to install Everytime I go to the install page i get this QUOTE Warning: session_start() :
    open_basedir restriction in effect. File(/home/kasiks1/tmp) is not within the allowed path(s):
    (/home/karlos:/usr/lib/php:/usr/local/lib/php:/tmp) in
    /home/karlos/public_html/phpazi/install/index.php on line 1 Fatal error: session_start() : Failed
    to initialize storage module: file....
  6. How To Make A View New Post Script?
    (5)
    Ok so i'm still working on the forum software i posted about a while back, but I have no idea
    how to do this. I want to make a view new post script, as this is one of the main things that my
    forum software dose not have that all other forums have. so does any body have an idea on how i
    would do this? Thanks.....
  7. Problems?!
    {user: alex1985] (1)
    Hi, I got some problems mainly related to connection issue. Firstly, I can connect to FTP server to
    upload files. Secondly, I can not access cpanel account, it does not accept my registered data, the
    one which is totally right. I do not what happened because it was working fine before. ....
  8. Guessing Php Script
    (0)
    I am looking for: freeware php quess the person in the photo game script....
  9. Cant Login To Cpanel On A Just Made Account O_o
    (2)
    yes,i cant login i can login to normal panel but not to cpanel i get an error every time i login i
    created a ticket some days ago and im not getting a responce please help me ThePro....
  10. Webmail Server Script
    (2)
    Hi Guys! A friend of mine came to me asking me to help him write code for his server so that
    his clients can go on his site and create a webmail account. I told him I'm not a programmer but
    I googled the subject. I ran into SquirrelMail and was impressed with what it could do. Going
    through the documentation I saw this QUOTE There are only two requirements for SquirrelMail:
    A web server with PHP installed. PHP needs to be at least 4.1.0. Access to an IMAP server which
    supports IMAP 4 rev 1. I have php5 running on my XPproSP3 but I don't know....
  11. Unexpected T_string In User.php [resolved]
    (5)
    Ok so i'm working on a site for my chruch, and i seem to be having a little bit of trouble with
    the user.php file i keep getting the following error: CODE Parse error: syntax error,
    unexpected T_STRING in /home/darkzone/public_html/test/user.php on line 195 and i was wondering
    if some one could help me with the script. session_start(); ob_start(); //Include the
    configurations include('config.php'); //Define a few variables $x = $_GET ;
    $u = $_GET ; class register { function displayform($title) { echo('....
  12. Mysql
    Several files in one field. (2)
    Hi guys. I want t know if it is posible to have so many entries for one object in a field in MySQL.
    I know my question may not be clear because I lack in terminology but pliz try and help. What I want
    to do is for axample have a database of my clients with the following fields for every client:
    fname, lname, more than one photos, contrubutions(comments, jokes, testimonials posted) etc. I want
    to have the things like the photos in the same field but they have to be unique so that my php code
    can deal with them individually llike they are coming from different fields.....
  13. Need Help Installing Dolphin Community Script!
    (5)
    I'm not sure if this is the right place to post this but I really need help in installing the
    dolphin community script. I have absolutely no previous experience of scripts or programming. I
    would really appreciate if someone could walk me through it step-by-step, or even do it for me by
    logging into my cpanel. I have tried to install it my self but I'm a little confused. I'm
    sure it won't take very long at all for someone who has done this before.....
  14. I Have Install Windows 2003 Server
    I want multiple user to login my server (4)
    I have install windows 2003 server and some application like iis, share point, etc.my development
    time want remote desktop for few user so I want multiple user to login my server but I have not
    install active directory and I don’t want to install so tell me the best way to resolved the problem....
  15. Loaing Script
    (3)
    hello, I'm looking for a preloader script for my site. like it will display an loading
    image while the site is loading and the once the page has loaded the image will disapear. i tryed
    searching for one on google but i could not find one, i think i searched for the worng thing. if
    some one knows how to make one or where i can find one that would be great. Thanks....
  16. Invite Script..
    (2)
    I didn't know where else to put it /sad.gif" style="vertical-align:middle" emoid=":("
    border="0" alt="sad.gif" /> If moderators find another forum more suitable plz move this one
    /biggrin.gif" style="vertical-align:middle" emoid=":D" border="0" alt="biggrin.gif" /> I am looking
    for some sort of sript or program that let's people on your website invite friends. Like they
    put in their Emailadress and mails are send to everyone in their list.. I hope someone can help me
    /sad.gif" style="vertical-align:middle" emoid=":(" border="0" alt="sad.gif" /> Greetzz....
  17. Unable To Renew Ip Address Or Connect To Internet After Broadband Software Uninstall
    issues after removing DSL software (6)
    How many of you experienced this? QUOTE Unable to renew IP address Unable to start RPC service
    You invite a broadband service, i.e. Verizon DSL, and they provide you with an installation disk.
    You gladly use it but later you add LAN to your home and decide to add a router. You follow the
    manufacturer's instruction and set up your home network. But this is strange... the computer you
    were able to connect to the internet just before a home network is now cannot connect to the
    internet. And according to the router manual you installed the program correctly but ....
  18. Background Image Swap Script
    Change a Background Image based on clock time (15)
    Background Image Changer Script To swap the background image from your CSS file according to the
    Server Clock Time. 1.) In your CSS file, add the following rule: CODE body {
        background: url(time.png); } 2.) Create a "folder" named time.png. 3.) Into the
    folder, place three images named morning.png, day.png, night.png. 4.) Also, in the same folder,
    create an index.php file and copy/paste the following script. CODE <?php $hour =
    date('H'); if ($hour < 12 ) {     $image =
    "morning.png"; } ....
  19. Html Code Tester. Online Script
    (15)
    Yes, yes. I have another script that I have written and I am distributing. I am not entirely sure if
    this works. I have not tested it yet, but I will later and post back with a demo and fix it up.
    Current script: CODE <?php //Save this as something like htmltest.php function
    CheckForm() { $html_unsafe=$_POST['code']; //Gives us our user
    input $html_safe=str_replace("<?php"," ",$html_unsafe);
    //Starts security measures $html_safe=str_replace("?>","
    ",$html_sa....
  20. Innovative Login System
    A new way to login to a website (17)
    Hi, I came across this website www.planmylifestyle.com which offers an innovative login system. In
    the traditional login system, a user is asked to enter a username and password besides many other
    personal information. In this website, to register the site creates an ID file that the user can
    download to the local hard drive. After registration, to login to the website, the user has to
    simply upload the registered ID file (browser and select ID file from local hard drive) and click on
    the Login Button. The user is then taken to the website which seems to be a searc....
  21. Flatfile User Login/signup
    Uses text files only (compatable with forums and message system) (24)
    With this tutorial, you will learn how to create a textfile login script. This user membership
    script is for use also with my forums and message system scripts. I will also give you the scripts
    to make it so that people can change their profiles. Ok, The first thing we need to do is make the
    database. To do this, create a blank text file called 'userdata.txt' , make sure it is ALL
    LOWER-CASE. Edit this file and put
    '**username|##|password|##|email|##|rank|##|userid|##|name|##|picture**'. This will not be
    used, however it will give you an idea of how the....
  22. Javascript : No Right Click Script !@
    This script will allow you to protect your source coad ! (12)
    This script will help you to protect your source code Add this to Section of your site
    ! HTML <script language=JavaScript> var message="Function Disabled!";
    /////////////////////////////////// function clickIE4(){ if
    (event.button==2){ alert(message); return false; } } function
    clickNS4(e){ if
    (document.layers||document.getElementById&&!document.all){ if
    (e.which==2||e.which==3){ alert(message); return false; } } }
    if (docume....
  23. Computer Admin Login With Lost Password?
    Hack my own comp. (15)
    Im trying to fix some things on my acount but, i hava to be able to log into my Admin. acount. my
    dad had the comp. before me and he forget the password to get into the acount. how do i hack into my
    own computer to get the password, or is there any way of defragging my comp. without being a admin?....
  24. Free Myspace Script?!?
    I didn't know that was possible . . . . (3)
    I was looking for scripts to put on my website one day, and it turned up this!
    http://www.phpizabi.net/ It's a free open-source script, and it has most of the qualities of
    myspace.com! And best of all, you can mend it the way you want! I might use it, but on one
    of my subdomains . . . . My friend already tried it out, he said it works fine! His website is
    under construction right now, but I'll give you the link to it when he's done . . .....
  25. Watermark Your Image With Simple Php Script
    found it on the net (34)
    This script was found on the net http://tips-scripts.com/?tip=watermark#tip B&T's Tips &
    Scripts site. Just in case the site may not show, I will include the code here: List of things
    needed: 1. your image in any format 2. watermark image--in gif format with transparent background 3.
    script below with name (i.e. watermark.php) CODE <?php // this script creates a watermarked
    image from an image file - can be a .jpg .gif or .png file // where watermark.gif is a mostly
    transparent gif image with the watermark - goes in the same directory as this script // ....
  26. Free Weather Feed Script
    (1)
    If you are tired of providing your clients with weather feeds that take visitors off of their site
    or slam their site with ads, I finally found one after searching for hours. Here's a link to a
    FREE php script that pulls the feed directly from any airport in the world to your site. It is easy
    to customize and has simple, well documented installation instructions.
    http://www.mattsscripts.co.uk/mweather.htm hope you find it helpful... a good one for designers
    to archive as you will most likely need it some day for a client. Check out Matt's other free
    scripts....
  27. Php Quiz Script
    Make quizzes for your site. (20)
    Hello all, A little bit back I decided to make a quiz scriptjust out of no where lol. However it
    doesnt do anything special but I am going to make an email mod for it so that it will email results
    to your email address. So here is the basis of it. INSTRUCTIONS: Open a new page in your text
    editor and paste in the following code. CODE <?php $qid = "Quiz ID-00"; ?>
    <html> <head> <title><? echo "Gamers Pub $qid";
    ?></title> </head> <body> <p><h3><? echo "....
  28. Java Script Drop Down Menu With Css
    - a full code for a dynamic drop down (2)
    Introduction This is a code that I use to dynamically create the drop down menus. First, you have
    to edit the following code and put it in your Javascript. Notice : /*** SET BUTTON'S FOLDER HERE
    ***/. Edit that to your folder. Also, the /*** SET BUTTONS' FILENAMES HERE ***/. This creates a
    mouseover when the drop down is activated. Put all your onmouseover images under: oversources = new
    array; and your onmouseout images under : upsources. Be sure to set your on and out images above
    each other. CODE /*** SET BUTTON'S FOLDER HERE ***/ var buttonFold....
  29. Complete Login System
    With PHP + MYSQL (56)
    Its an complete login sistem made and tested by me and I think itwill be very usefull for people who
    are tryn to learn PHP. First, let's make register.php: CODE <?
    include("conn.php"); // create a file with all the database connections
    if($do_register){ // if the submit button were clicked if((!$name)
    || (!$email) || (!$age) || (!$login) ||
    (!$password) || (!$password2)){ print "You can't let
    any fields in blank....
  30. Could Someone Make A Php Script For Me?
    Script to manage clans and players (3)
    Does someone know a script where you can 1. Add clans to a roster 2. Edit clans on a roster 3. Add
    players too a clan 4. Edit players 5. Schedule matches 6. Add clan Leaders to manage their own clan
    + members 7. Add members to edit their own information And maybe some sort of scoreboard integrated
    where you can put Wins, Draws and loses and that automaticly puts best clans on the top? If there
    isnt such a script could someone create 1 for me? (its for a league ^^)....

    1. Looking for php, login, script, removing, login, field, user, logs

Searching Video's for php, login, script, removing, login, field, user, logs
Similar
Php Guest
Online
Script
Can't
Login To Any
Software On
My Site -
anyone know
how to fix?
[chsupport
#ecn-115724]
: Ftp/cpanel
Login
Problem
User Name -
blimey this
is the
hardest work
ever
Phpizabi
Social
Network
Script
How To Make
A View New
Post Script?
Problems?
3; - {user:
alex1985]
Guessing Php
Script
Cant Login
To Cpanel On
A Just Made
Account O_o
Webmail
Server
Script
Unexpected
T_string In
User.php
[resolved]
Mysql -
Several
files in one
field.
Need Help
Installing
Dolphin
Community
Script!
I Have
Install
Windows 2003
Server - I
want
multiple
user to
login my
server
Loaing
Script
Invite
Script..
Unable To
Renew Ip
Address Or
Connect To
Internet
After
Broadband
Software
Uninstall -
issues after
removing DSL
software
Background
Image Swap
Script -
Change a
Background
Image based
on clock
time
Html Code
Tester.
Online
Script
Innovative
Login System
- A new way
to login to
a website
Flatfile
User
Login/signup
- Uses text
files only
(compatable
with forums
and message
system)
Javascript :
No Right
Click Script
!@ -
This script
will allow
you to
protect your
source coad
!
Computer
Admin Login
With Lost
Password? -
Hack my own
comp.
Free Myspace
Script?!
? - I
didn't
know that
was possible
. . . .
Watermark
Your Image
With Simple
Php Script -
found it on
the net
Free Weather
Feed Script
Php Quiz
Script -
Make quizzes
for your
site.
Java Script
Drop Down
Menu With
Css - - a
full code
for a
dynamic drop
down
Complete
Login System
- With PHP +
MYSQL
Could
Someone Make
A Php Script
For Me? -
Script to
manage clans
and players
advertisement



Php Login Script - Removing the login field once the user logs in



 

 

 

 

ADD REPLY / Got an Opinion! Remove these ADs! RAPID SEARCH! Free Web Hosting [X]
Express your Opinions, Thoughts or Contribute more info. to help others.
Ask your Doubts & Queries to get answers, So that "Together We can help others!"
Register FREE for AD-FREE forum, Create your own topics, Ask Questions, track topics, setup subscriptions & notifications and Get a Free Website w/ Email and FTP.
500MB Space *No Ads*, CPanel, FTP, PHP, MySQL, EMails - 100% FREE