Adam wrote: > It return no error, but say rs is an Array. When I try to > access the $rs as > array it gives me a offset error. a top tip for this kind of thing is to use the print_r function to examine variables, like this: echo '<pre>'; print_r($rs); echo '</pre>'; That'll show you what's actually in that array. hth Rob -- PHP Soap Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php