Jump to content

[SOLVED] Replace Help


steviez

Recommended Posts

Hi,

 

Im working on a file hosting script and want to check if the file exists on my server. When a user goes to download a file (eg: file.zip) it shows in the browser as file.zip.html

 

The problem i have is that the file on the server does not have .html on it so i need to remove this. Here is what i have (not working)

 

<?php
$file = $_GET['file'];
$chk_name = preg_replace(".html", "", $file);
$chk_file = $settings['upfolder'].$chk_name;
if(!file_exists($chk_file)) {
alert("File Does No Exist Or Has Been Deleted");
goto("".$settings['site_url']."");
}
?>

 

Thanks in advance

Link to comment
https://forums.phpfreaks.com/topic/82483-solved-replace-help/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.