Hello;
I'm new to xml so excuse me if this is a simple (stupid question)
I've got php scripts that generate xml - they work fine
I've got a html and xml pages that pull xml tags from the php scripts displaying the results - they work fine
but when I place the html or xml page outside my network they're dead even when I replace the 'src' path to reflect the complete http address of the php scripts.
I know I more than likely am missing something to transfer data requests via http but I don't know what (as I said I'm new to this)
PHP works with each request
:sample php result:
<?xml version="1.0" ?>
- <dataset>
- <row>
<name>john doe</name>
</row>
</dataset>
:sample.html:
<html>
<body>
<xml id="name" src="
<table border="1" datasrc="#name">
<tr>
<td><span datafld="name"></span></td>
</tr>
</table>
*id_gen would be produced by filling in a form, but is provided in the link for testing purposes. The number is searched against mysql through php to obtain the name associated with the number.
The URL with in 'src' is an example of what I've tried from a remote network trying to access my network
Any suggestions?
I'm new to xml so excuse me if this is a simple (stupid question)
I've got php scripts that generate xml - they work fine
I've got a html and xml pages that pull xml tags from the php scripts displaying the results - they work fine
but when I place the html or xml page outside my network they're dead even when I replace the 'src' path to reflect the complete http address of the php scripts.
I know I more than likely am missing something to transfer data requests via http but I don't know what (as I said I'm new to this)
PHP works with each request
:sample php result:
<?xml version="1.0" ?>
- <dataset>
- <row>
<name>john doe</name>
</row>
</dataset>
:sample.html:
<html>
<body>
<xml id="name" src="
<table border="1" datasrc="#name">
<tr>
<td><span datafld="name"></span></td>
</tr>
</table>
*id_gen would be produced by filling in a form, but is provided in the link for testing purposes. The number is searched against mysql through php to obtain the name associated with the number.
The URL with in 'src' is an example of what I've tried from a remote network trying to access my network
Any suggestions?