hmaster
Senior Member
Posts: 716 Reputation: 24
33 / /
Joined: Nov 2004
|
RE: PHP - filename editing on the fly.
code: <?php
$file = "linktofile.ext"
$path = pathinfo($file);
$extension = $path['extension'];
$newfile = "NEWNAME.".$extension;
#then do the header code?
?>
This post was edited on 10-21-2008 at 11:41 AM by hmaster.
|
|