01-18-2008, 10:15 PM
|
#6 (permalink)
|
|
The Frequenter
Join Date: Apr 2005
Location: South UK
Posts: 483
Thanks: 51
|
Going on your code sample, could you not just do something like:
PHP Code:
<?php
// ... your code here ...
$xmlResponse = "<imageCacheResult>";
$xmlResponse .= "<url>$url</url>";
$xmlResponse .= "<thumbnail>$thumbnail</thumbnail>";
$xmlResponse .= "</imageCacheResult>";
return $xmlResponse;
?
Alan
|
|
|