Hello, I have this below code, where a user enters a url and the file specified in the url is retrieved and saved on the server.
Now i want to display just the filename and its extension at the end. please let me know how to do it.
for example, i enter a url like http://www.google.com/google/test.html, after retrieving the file, i want to show just test.html
thanks
<?php
echo "script started\n";
echo "<br>";
echo $_GET['url'];
echo "<br>";
$inputfile = fopen($_GET['url'], "r");
$outputfile = fopen("file.pdf", "w");
echo "opened files\n";
echo "<br>";
$data = '';
while (!feof($inputfile)) {
$data .= fread($inputfile, 8192);
}
echo "read data\n";
echo "<br>";
fwrite($outputfile, $data);
echo "transfered data\n";
echo "<br>";
fclose ($inputfile);
fclose ($outputfile);
echo "files closed\n";
echo "<br>";
echo "done";
echo "<br>";
?>