Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

data between sites

Status
Not open for further replies.

BitFuzzy

Technical User
Jun 8, 2001
343
US
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=&quot;1.0&quot; ?>
- <dataset>
- <row>
<name>john doe</name>
</row>
</dataset>

:sample.html:

<html>
<body>
<xml id=&quot;name&quot; src=&quot;
<table border=&quot;1&quot; datasrc=&quot;#name&quot;>

<tr>
<td><span datafld=&quot;name&quot;></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?
 
BitFizzy

I am having a similar problem to you (except mine is dead on local desktop too) and was wondering if you found a solution? (I am calling a Delphi cgi .exe)

Tracey
Remember... True happiness is not getting what you want...

Its wanting what you have got!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top