View Single Post
  #5 (permalink)  
Old 06-10-2008, 11:33 PM
Whitey's Avatar   
Whitey Whitey is offline
Programming Professional
 
Join Date: Feb 2008
Location: Loveland, Colorado
Posts: 225
Credits: 0
Rep Power: 7
Whitey has a spectacular aura aboutWhitey has a spectacular aura aboutWhitey has a spectacular aura about
Send a message via AIM to Whitey Send a message via MSN to Whitey Send a message via Skype™ to Whitey
Default Re: How to start this?

I figured a way around it with a help of a friend.. i will post what i did later.. atm i need help at something else..

okay so i do
PHP Code:
$_SERVER['PHP_SELF']; 
gets /upload_script/whitey/home.php

but i want to strip the home.php.. so it shows /upload_script/whitey/ If you guys figure out how to do this before me let me know...

EDIT:
FIgured it out.. To fast for you
PHP Code:
$address_url $_SERVER['PHP_SELF'];
        
$address_url_new str_replace("home.php"""$address_url);
        die(
$address_url_new); 

Last edited by Jaan; 06-11-2008 at 01:13 PM. Reason: Please use tags when you're posting your codes!
Reply With Quote

Sponsored Links