|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now! |
|
#1
|
|||
|
|||
|
embedded XML not working on Internet Explorer
I have been trying to work with XML, but when I try to embed it on to HTML. It does not show any output. But if I use netscape it shows the output. Can anyone please tell me what I can do to fix this?
[PHP <html> <body> <xml> <to>Tove</to> <from>Jani</from> <heading>Reminder</heading> <body>Don't forget me this weekend!</body> </xml> </body> </html>[/PHP] |
|
#2
|
|||
|
|||
|
and also...
Hi,
there is another way to get xml into html: Code:
<XML id=xmlHEAD src="heading.xml"></XML> - refers to an external xml file. Declare between the HEAD tags. then; say if you want to use the info in a table: Code:
<table dataSrc=#xmlHEAD border="0"> <tr> <td><span datafld="heading" class="heading"></span> </td> </tr> </table> the dataSrc refers to the id declared in the <xml> tag then it will find the datafld (heading tag used in the xml file) and put its contents into the html display. The contents of the xml file were: Code:
<?xml version="1.0"?> <content> <heading>This is the header information</heading> </content> This will only work in IE though, you will have to do a browser detect for displaying it in other browsers... good luck. Dan p.s. as echolalia said, processing the xml document serverside and then using a script to put the info in a html formatted doc, say through a perl or php script would solve your browser compatibility problems ![]()
__________________
DELETE FROM pay WHERE employee_name ='Dan'; Last edited by dan_2001 : June 10th, 2003 at 05:25 AM. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > embedded XML not working on Internet Explorer |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|