Delete adress bar on Phproxy

Discussion in 'PHP' started by PEHW, Apr 11, 2007.

  1. #1
    Anyone know how to delete the address bar on phproxy's proxified pages, but keep the ads?

    see example:
     

    Attached Files:

    PEHW, Apr 11, 2007 IP
  2. stugs

    stugs Peon

    Messages:
    157
    Likes Received:
    5
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Go into index.php and change this:

                           
     . '<form method="post" action="' . $_script_url . '">'
    . ' <label for="____' . $_config['url_var_name'] . '"><a href="' . $_url . '">Address</a>:</label> <input id="____' . $_config['url_var_name'] . '" type="text" size="80"
     name="' . $_config['url_var_name'] . '" value="' . $_url . '" />'
     . ' <input type="submit" name="go" value="Go" />'
    . ' [go: <a href="' . $_script_url . '?' . $_config['url_var_name'] . '=' . encode_url($_url_parts['prev_dir']) .' ">up one dir</a>, <a href="' . $_script_base . '">main
     page</a>]'
    . '<br /><hr />';
    
    Code (markup):
    to this

                           
    . ' [go: <a href="' . $_script_url . '?' . $_config['url_var_name'] . '=' . encode_url($_url_parts['prev_dir']) .' ">up one dir</a>, <a href="' . $_script_base . '">main
     page</a>]'
    . '<br /><hr />';
    
    Code (markup):
     
    stugs, Apr 11, 2007 IP
    PEHW likes this.
  3. PEHW

    PEHW Peon

    Messages:
    247
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Thanks so much!
     
    PEHW, Apr 11, 2007 IP