Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- $content = "<urlset xmlns=\"http://www.sitemaps.org/schemas/sitemap/0.9\">
- <url>
- <loc>http://site.com/page/123456.html</loc>
- </url>
- </urlset>";
- $filename = 'myxmlfile.xml';
- header('Content-type: application/mspowerpoint');
- header('Content-Transfer-Encoding: binary');
- header('Expires: 0');
- header('Cache-Control: must-revalidate');
- header('Pragma: public');
- header('Content-Disposition: attachment; filename="' . $filename . '"');
- header('Content-Length: ' . strlen($content));
- echo $content;
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement