XML Import-Export Forum :: Need help with XML Recordset SB
This thread was displayed: 0 times
Starting with 17th May 2007, Adobe Systems will stop offering support for any version of the discontinued InterAKT products. As a result, we will not answer to new support incidents starting with May 17th, 2007. Pending support incidents will still be followed in order to be closed. The product forums will remain open and be transformed in user-to-user forums. The general forums will be made read-only and not allow new posts or comments.
For more information about the affected products visit: www.interaktonline.com/Support/
Pavel Plokhodko
03-20-2007 10:32:54 GMT +2
|
Hello,
I'm trying to display on my page external XML-feed by XML-recordset SB.
Model: PHP_ADODB, MySQL 4.0, Apache 1.3
I know my problem is in encodings, but I can't resolve it by myself.
So, XML feed is here it is encoded in windows-1251 (cyrillik) and it behaves with DW just perfect - field imports, cache creates good - no any error.
But when I output recordset - it types empty rows, but with correct number of rows.
Please help any suggestion.
|
|
|
Razvan Racasanu[InterAKT]
03-21-2007 10:58:03 GMT +2
|
Hello,
Can you post in a private message FTP connection details so we can try and find the problem?
Regards,
Razvan RACASANU
|
|
|
Pavel Plokhodko
03-26-2007 08:56:05 GMT +2
|
Hello, Razvan
I realy need your help, I posted ftp in private, could you help me?
Thanks.
|
|
|
Razvan Racasanu[InterAKT]
03-28-2007 16:40:44 GMT +2
|
Hello,
This is happening because your XML contains the nodes in uppercase, but you echo them in index.php using lowercase. I have replaced:
<td><?php echo $rsXML1->Fields('color'); ?></td>
with:
<td><?php echo $rsXML1->Fields('COLOR'); ?></td>
and now the data is showing correctly for this column.
Regards, Razvan RACASANU
|
|
|
Pavel Plokhodko
03-30-2007 11:03:28 GMT +2
|
Hello, Razvan!
Thank you very much! Everything is working.
Its so simply and obviously, but really helpful.
I must say The day when your great support will be lost - looks for me as the end of the time, very sad.
I don't like Web Assist. I wish you good luck.
|
|
|