Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End hello: how to hidden or md5 url

  • This topic is empty.
Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #28507
    moh2007
    Member

    hi all

    how to hidden or md5 url
    ________________________________________
    exmple
    help.php=help

    ok now

    ?page=help

    how to convert help to md5
    _______________________________________

    #79151
    Makeshift
    Member
    Code:
    if($_GET){
    $page = $_GET[‘page’];
    $page = md5($page);
    header(“Location: page=$page”);
    }

    that will turn:
    ?page=page
    into
    ?page=04c47843e01f46c273d44c511f02a00d

Viewing 2 posts - 1 through 2 (of 2 total)
  • The forum ‘Back End’ is closed to new topics and replies.