+ Reply to Thread
Results 1 to 11 of 11




  

Thread: For Login System??

      
  1. #1
    Jedi Master realistic is on a distinguished road
    Join Date
    November 5, 2008
    Location
    London
    Posts
    162
    Rep Power
    4
    Feedback Score
    0

    Question For Login System??

    Is php the type of language you use for login pages such as a blog so members can join?

  2. #2
    Jedi Master ChrisMac is on a distinguished road
    Join Date
    November 26, 2009
    Posts
    29
    Rep Power
    3
    Feedback Score
    0

    Default Re: For Login System??

    Yes, you can definitely implement login system with PHP.

  3. #3
    Jedi Master darkenfaith is on a distinguished road
    Join Date
    January 9, 2010
    Posts
    12
    Rep Power
    3
    Feedback Score
    0

    Default Re: For Login System??

    hi....if you want to create a simple login using PHP....please visit h tt p: //cupu-blagu.blogspot.com/2009/12/create-simple-login-page-using-php.html , i'm sure you can found something useful there :cheerful:
    Last edited by Halobitt; Feb 24th, 2010 at 8:32 am.

  4. #4
    Jedi Master hhunt is on a distinguished road hhunt's Avatar
    Join Date
    December 2, 2009
    Posts
    200
    Rep Power
    3
    Feedback Score
    0

    Default Re: For Login System??

    Quote Originally Posted by darkenfaith View Post
    hi....if you want to create a simple login using PHP....please visit h tt p: //cupu-blagu.blogspot.com/2009/12/create-simple-login-page-using-php.htm, i'm sure you can found something useful there :cheerful:
    Please do not visit that link, it has a spyware on it.
    Be warned!!!
    Last edited by Halobitt; Feb 24th, 2010 at 8:32 am.

  5. #5
    Jedi Master braden is on a distinguished road braden's Avatar
    Join Date
    January 17, 2010
    Posts
    81
    Rep Power
    3
    Feedback Score
    0

    Default Problem in page loading?

    I have a php page, such as website.com/files/defualt.php, that just won't load.
    at the very beginning of the page, I have a

    <?php
    header("Location: ?home");
    function home(){
    /...code.../
    }
    ?>


    This is not all of the code, if I need to post all of it, I will. But the problem is that the page takes forever to load, and when finished, it shows no content. I have used different browsers.

  6. #6
    I'm New! mm10 is on a distinguished road mm10's Avatar
    Join Date
    February 9, 2010
    Posts
    3
    Rep Power
    0
    Feedback Score
    0

    Default

    PHP MySQL Login Script:
    PHP MySQL Login*Script

    more php login examples: php login script - Google Search
    Last edited by vectro; Jul 14th, 2010 at 6:13 pm. Reason: Merged

  7. #7
    Grand Masters vectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nice vectro's Avatar
    Join Date
    September 5, 2008
    Location
    U.S.A.
    Posts
    1,499
    Rep Power
    4
    Feedback Score
    0

    Default Re: For Login System??

    Quote Originally Posted by hhunt View Post
    Please do not visit that link, it has a spyware on it.
    Be warned!!!
    I didn't notice anything. Did you get a warning from your AV software?
    Vectro Web Hosting - Web hosting with solid tech support.

    x Proxy Host - Affordable PHP proxy hosting with proxy-specific features.

  8. #8
    Jedi Master hhunt is on a distinguished road hhunt's Avatar
    Join Date
    December 2, 2009
    Posts
    200
    Rep Power
    3
    Feedback Score
    0

    Default Re: For Login System??

    Quote Originally Posted by vectro View Post
    I didn't notice anything. Did you get a warning from your AV software?
    Yes, he has now removed it. He had a script embedded that called external .exe file to download to your computer when you visited his site. I just checked now and noticed that he has removed it.

  9. #9
    Grand Masters vectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nicevectro is just really nice vectro's Avatar
    Join Date
    September 5, 2008
    Location
    U.S.A.
    Posts
    1,499
    Rep Power
    4
    Feedback Score
    0

    Default Re: For Login System??

    Quote Originally Posted by hhunt View Post
    Yes, he has now removed it. He had a script embedded that called external .exe file to download to your computer when you visited his site. I just checked now and noticed that he has removed it.
    I wonder if he did that on purpose or if his blogspot was hacked.
    Vectro Web Hosting - Web hosting with solid tech support.

    x Proxy Host - Affordable PHP proxy hosting with proxy-specific features.

  10. #10
    Jedi Master sandeep Kumar is on a distinguished road
    Join Date
    June 24, 2010
    Location
    India
    Posts
    35
    Rep Power
    2
    Feedback Score
    0

    Default Re: For Login System??

    Yes. in php you done that task, and i'll give a appropriate code to you just try

    form name:index_dir.php

    Code:
    <?php
    if(isset($_POST['posted']))
    				{
    				   $name=$_POST['dir_username'];
    				   $pass=$_POST['dir_password'];
    				   $connect=mysql_connect('localhost','root','');
    				$db=mysql_select_db('dir_db',$connect);
    				$query=mysql_query('SELECT * FROM dir_login',$connect);
    				while($row=mysql_fetch_array($query))
    				{
    					$column1=$row['username'];
    					$column2=$row['password'];
    					if($column1 == $name && $column2 == $pass)
    					{
    						header('location:registration_dir.php');
    					}
    					else
    					{
    						echo('Sorry Username and password is mismatch');
    						exit();
    					}
    				}
    				}
    			 
    ?>
    
    <form name="index_dir" method="post" action="index_dir.php">
    <table align="center" border="">
            <tr>
                   <td>
                     <b  style="background-color:#063">USERNAME</b>
                    <input type="text" name="dir_username" value="USERNAME" style="background-color:#966">
                    </td>
            </tr>
            <tr>
                   <td><b style="background-color:#063">PASSWORD</b>  
                   <input type="password" name="dir_password" value="*****" style="background-color:#966">
                   </td>
            </tr>
            <tr>
                   <td><input type="hidden" name="posted" value="true>"></td>
                   <td>
                   <input type="submit" name="dir_submir" value="GO" style="background-color:#063">
                   </td>
           </tr>
    </table>
    </form>

  11. #11
    Grand Masters simplyamazing12 will become famous soon enoughsimplyamazing12 will become famous soon enough
    Join Date
    May 6, 2010
    Posts
    593
    Rep Power
    3
    Feedback Score
    0

    Default

    I prefer PHP for login systems. If you have a forum, you can integrate the login system into the main web site or blog even. You can Google the codes.

    Most CMS (content management systems) have the login systems automatically installed. That way you don't have to integrate the PHP login system by yourself with your third party forum software.

    Drupal and Xoops or even Joomla have it. You can probably install these yourself or even have CPanel's Fantastico install them.
    Last edited by vectro; Jul 16th, 2010 at 3:08 am. Reason: Merged
    My Business: Chi Chi Floral [link soon!]

    Web hosting provided by: Myhosting.com

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Similar Threads

  1. Login strangeness.
    By Autumn in forum General Business
    Replies: 5
    Last Post: Oct 13th, 2008, 5:37 pm

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
WebTalkForums
WebTalkForums
Recent Forum Threads