Daniel Brown wrote:
<?php
    foreach($set as $key => $value) { // You just missed the $ before value.
?>
This seems to be the culprit.


    Also, check this line:

<?php
         if  (array_key_exists($key,$this->titles)
?>

    You're missing a ')' to close the if() statement.  It's not
causing this problem, but it will cause a problem afterward.


Thanks for catching that.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to