gbDate = $a; $this->gbFrom = $b; $this->gbEmail = $c; $this->gbMessage = $d; } // Show the Guestbook Entry Date ----------------- function showDate() { echo $this->gbDate; } // Show the Guestbook Entry From ----------------- function showFrom() { echo stripslashes($this->gbFrom); } // Show the Guestbook Entry Email ---------------- function showEmail() { echo $this->gbEmail; } // Show the Guestbook Entry Message -------------- function showMessage() { echo smiley_face(stripslashes($this->gbMessage)); } } // End Guestbook Entry Object Class -------------------------------------- ?>