01-29-2008, 07:28 PM
|
#24 (permalink)
|
|
Wizard
Join Date: Sep 2007
Posts: 1,299
Thanks: 17
|
These are the last five that I wrote, but I have modified many lines since last night
PHP Code:
$file = "../sitemap.xml"; $file_handle = fopen($file, 'w') or die("can't open file"); fwrite($file_handle, $sitemap_string); fclose($file_handle);
echo "Instalation Complete, please delete the install directory.";
|
|
|
|