Welcome Guest, Not a member yet? Register   Sign In
How to create our profile url
#15

[eluser]JasmineFlower[/eluser]
Hi,

I found another way without changing system config & server config files.

In my hooks file userlookup.php as below

Code:
<?php
if (!defined('BASEPATH')) exit('No direct script access allowed');


class Userlookup
{
    protected $uri;
        
    protected $hostname;
    protected $username;
    protected $password;
    protected $database;

    public function __construct()
    {
        // Configure database connection
        $this->hostname = 'localhost';
        $this->username = 'username';
        $this->password = 'password';
        $this->database = 'dbname';
    }
        
    public function check_uri()
    {        
         $username  = substr($_SERVER['PATH_INFO'],1);            
         $url = explode("/",$username);
    
         // Connect to database, and check the user table
         mysql_connect($this->hostname, $this->username, $this->password) AND mysql_select_db($this->database);
         $res = mysql_query("SELECT url_name FROM users WHERE url_name='".$url[0]."'");
         if(mysql_num_rows($res) > 0)
         {
         if ($row = mysql_fetch_object($res))
         {            
            $_SERVER['PATH_INFO'] = '/controller name/method name/'.$_SERVER['PATH_INFO'];
         }
         mysql_free_result($res);
         }
    }    
    
}

?>


Messages In This Thread
How to create our profile url - by El Forum - 04-09-2011, 03:48 AM
How to create our profile url - by El Forum - 04-09-2011, 05:33 AM
How to create our profile url - by El Forum - 04-09-2011, 06:14 AM
How to create our profile url - by El Forum - 04-09-2011, 03:34 PM
How to create our profile url - by El Forum - 04-10-2011, 10:23 PM
How to create our profile url - by El Forum - 04-10-2011, 11:02 PM
How to create our profile url - by El Forum - 04-11-2011, 12:46 AM
How to create our profile url - by El Forum - 04-11-2011, 01:21 AM
How to create our profile url - by El Forum - 04-11-2011, 01:37 AM
How to create our profile url - by El Forum - 04-11-2011, 01:54 AM
How to create our profile url - by El Forum - 04-11-2011, 03:24 AM
How to create our profile url - by El Forum - 04-11-2011, 03:54 AM
How to create our profile url - by El Forum - 04-11-2011, 05:14 AM
How to create our profile url - by El Forum - 04-12-2011, 02:48 AM
How to create our profile url - by El Forum - 05-04-2011, 01:24 AM
How to create our profile url - by El Forum - 07-04-2011, 09:31 AM
How to create our profile url - by El Forum - 07-08-2011, 02:04 AM



Theme © iAndrew 2016 - Forum software by © MyBB