1

Topic: hide_the_true function :)

<?
class liar_class{
  var  $facts = '';
  function print_facts()
  {
    echo $this->facts;
  }
}

/* commented becuase there is not honest in world class
class honest_class{
  var  $facts = '';
  function print_facts()
  {
    echo $this->facts;
  }
}
*/

function hide_the_true($facts)
{
  $liar = new liar_class;
  $liar->facts = $facts;
  $liar->print_facts();
}
?>

if you have any bug post here.

If your people come crazy, you will not need to your mind any more.

Re: hide_the_true function :)

Interesting smile