Alex Hogan <mailto:[EMAIL PROTECTED]>
on Tuesday, March 16, 2004 9:48 AM said:
> $row = mssql_fetch_array($result);
>
> $thearray = explode('__', $row); - This is line 40
$row is an entire array. you don't explode an entire array, you only
explode the contents of an element of an array.
print_r($row) will give you some clues.
you'll need to access a specific element within the array. like:
$thearray = explode('__', $row[0][0]);
> What am I missing?
unless i'm wrong, the above.
chris.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php