Test for customisable menu layout. XML determines component iterations and locations. See project folder url for all items

Edit: Due to my host being an arse, this got corrupted some how. It hasn't worked for some time and I can't be bothered to fix it. There's a better implementation in my Flash Portfolio which shows how to have a basic CMS or LMS (Layout Management System).

Download Flash

xmlpickup.php:

<?php
echo "xmlpickup requested<br>";
echo "$HTTP_RAW_POST_DATA";
$filename = "sendme.xml";
$fp = fopen( $filename,"w+");
fwrite ( $fp, "$HTTP_RAW_POST_DATA" );
fclose( $fp );
?>