From: Andris S. <an...@do...> - 2001-08-25 12:50:03
|
I'm moving to the university, so until I get into the new flat and get a new internet connection and buy a new computer, etc. I'm going to be offline. Howerver, I feel I should leave things in order, so here's the latest version of xmltphp (sorry for sending the files to the list again, didn't have any time to play with CVS). xml2php now uses the idea from Alex to know when to generate keyless arrays(the version before generated keyless arrays if there were two array keys with the same name, but it didn't work if there was only one array defined). _Because of this change it is necesary to change the bcp.xml page definitions and the way Page processes them._ So, <langs> <lang> <name>Latvian</name> </lang> <lang> <name>English</name> </lang> </langs> will become $langs=array( array( 'name' => "Latvian", ), array( 'name' => "English", ), ); Over and out, Andris Spruds |