Posts Tagged With: header

Force Download Dialog with PHP using octect-stream

Tagged with: , , , , , ,

Use this code to force a download of any type of content with PHP


header("Content-type:application/octect-stream");
header('Content-Disposition: attachment; filename=filename_' . date('Y-m-d') . '.sql');
print "Hello World";
No Comments »

Get URL Headers from Linux Command Line

Tagged with: , , , ,

Show the headers of an URL from the command line. This will need perl, lwp installed on the system.


lwp-request -ed "http:/lindesk.com/"

URL Headers using Curl

No Comments »

301 Redirect using PHP

Tagged with: , , , ,

301 Redirect using PHP


header ('HTTP/1.1 301 Moved Permanently');
header ('Location: '.$new_location);
No Comments »