i am using VS.PHP which is an add-in for Visual Studio 2005 and allows me to author and debug php applications within a windows machine. Its been working okay but im having problems accessing domxml stuff.
This block
Code: Select all
$resultsDoc = domxml_new_doc("1.0");
results = $resultsDoc->create_element("results");
return $resultsDoc;
now im sure this is because i either dont have the domxml module loaded properly (if at all). I have added it to my modules section in my solution explorer but do i need to add an include or any kind of statement in the class that im using it from?
Essentially this VS.PHP Addin adds a PHP MODULES section to my solution, i can add all kinds of available modules that came with it. "domxml" is one i added but im getting this error still
any advice or guidance is appreciated.
tia,
mcm