12-08-2007, 02:58 PM
|
#2 (permalink)
|
|
The Addict
Join Date: Nov 2007
Location: UK
Posts: 319
Thanks: 18
|
maybe instead of echoing the $post->get_post();
You can do that within the class itself.
PHP Code:
function get_post() { echo $this->title."</br>"; echo $this->post; }
Because it might be overloading the return so its only returning the title.
|
|
|