| Article: |
A PHP Web Services Client | |
| Subject: | little typo | |
| Date: | 2003-07-04 17:57:56 | |
| From: | anonymous2 | |
|
To be current for PHP 4.3.2, html_entities should read htmlentities (delete the underscore.)
|
||
Showing messages 1 through 2 of 2.
-
little typo
2003-07-21 13:06:00 Adam Trachtenberg |
[View]
-
little typo
2004-11-07 21:35:53 stimms [View]
I also ran into a small issue if authors was undefined. Checking for the existance of authors seemed to help
if($hit->Authors)
$Authors = implode(" and ", $hit->Authors);
I also noticed that the results of the query were stored in $books at first and then jumped to being stored in $hits.



Yup. You're correct. I mixed the function's naming convention with html_entity_decode(), its sister.
-adam