View Single Post
Old 12-08-2007, 02:58 PM   #2 (permalink)
Rendair
The Addict
Upcoming Programmer Top Contributor 
 
Rendair's Avatar
 
Join Date: Nov 2007
Location: UK
Posts: 319
Thanks: 18
Rendair is on a distinguished road
Default

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.
__________________
www.jooney.co.uk - the online portfolio
Send a message via MSN to Rendair
Rendair is offline  
Reply With Quote
The Following User Says Thank You to Rendair For This Useful Post:
Gurnk (12-08-2007)