summaryrefslogtreecommitdiff
path: root/ext/simplexml/CREDITS
Commit message (Collapse)AuthorAgeFilesLines
* Fix writing of SQLite and SimpleXMl extension and add Rob to the creditsMarcus Boerger2004-03-281-1/+1
| | | | | line of the latter. Add ext/SPL.
* Major bugfix for consistency.Marcus Boerger2004-01-171-1/+1
| | | | | | | # After long discussions we came to a conclusion on how to make this # extension consistent in itself. # Thanks to Rob for all the work
* Add myselfMarcus Boerger2003-12-161-1/+1
|
* update credits.foobar2003-07-111-1/+2
|
* add very basic code for the simplexml extension. The following works ::Sterling Hughes2003-05-181-0/+1
person.xml -- <person> <name> <first>Sterling</first> <last>Hughes</last> </name> </person> person.php -- <?php $p = simplexml_load_file('person.xml'); echo $p->name->last . ', ' . $p->name->first; ?> Still needs lots of work.