I'm having probelms figuring out how to write some files to disk in php. What I need to do is take varaibles from a form on the web, and write them to an array in a file. The file (that is writen too) needs to look like this:
<?
$common_included=1;
$showinfo=array (showname, showacronym, showdate, evencenter, location, days, showhours, howmany, numberofsessions,
passnumber, boothsize);
?>
...having the all the varaibles (ie showname, showacronym etc,) replaced with the ones from the form. I noramlly would write these to a database, but I don't have one on my current webhost. Is this do-able? or what would be the best way to do this?
Thanks!