[PHP] How to parse an XML document

2001-12-23 Thread PHP Rules

Hi fellas.

I would like to know the way to parse an XML document.

I come from Java world, and you can handle an XML document,
and 
then show it as an HTML page.

I suppose that it's also possible by using PHP, isn't it?

I would like also to know if it's available in the 'standard
installation' of PHP. I mean, I want to develop this on a
remote
server. It uses PHP, and I suppose that it's not installated
any
extra module, so I wonder if the XML parsing needs any extra
module
or not.

Best regards.
___
¿Sabes que puedes redireccionar tu correo de HispaVista a donde tú quieras?
http://www.hispavista.com/altascorreo/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]




[PHP] Help with DBM (dbmfetch)

2001-11-12 Thread PHP Rules

Hi!!

I'm trying to visualize a .dbm file. It's hosted
in the same directory as my .php file.

With this test example:

-//---
htmlheadtitlePHP Test/title/head
body
?php 

$fn=myfile.mdb; 
$db=dbmopen($fn,r); 

$key = dbmfirstkey ($db);
while ($key) {
echo $key =  . dbmfetch ($db, $key) . \n;
$key = dbmnextkey ($db, $key);
}

dbmclose($db);

?
/body/html
-//--

I do not get anything.

Could anybody provide me an example of using DBM?

Thank you very much.
___
Recibe el boletín semanal con lo mejor del mundo del motor de Movendus.com
http://www.movendus.com/pr.jsp?ID1=2403ID2=2605

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]