|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2002-04-02 10:36 UTC] cveld at bigfoot dot com
Om my site you can find http://cveld.nl.eu.org/test/xml/php/test5.php and test5.php.txt. I copied the example from a popular source code website. My site runs on iis5 dotnetbeta2 + php 4.1.2 The same file was installed on http://flux.myserver.org/php/carl.php but as you probably can see on a different installation: omnihttpd + php 4.0.4 My test php does not respond with any information on my server while the same php file on the other server responds correctly. PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Sun Dec 07 21:00:01 2025 UTC |
for current php-cvs, i'm not sure about v4.1.x and above, you have to use this code, b/c the php_domxml api changed: if($person->node_name() == "person") { echo "<b>Person Found:</b><br> "; echo "Name: " . $person->get_content() . "<br>"; echo "Id: " . $person->get_attribute("id") . "<br>"; echo "DOB: " . $person->get_attribute("dob") . "<br><br>"; }