Search found 1 match

by joeann
Mon Nov 14, 2005 3:12 am
Forum: PHP - Code
Topic: Error while Storing Object Variables as Session Variables.
Replies: 1
Views: 175

Error while Storing Object Variables as Session Variables.

I am a beginner in PHP programming. I was trying to store object variables as session variables, so that we don't have to create an object every time the page loads. I have a simple class file simple.php <?php class simple{ function dummy(){ print "TEST SUCCESSFUL!\n"; } } ?> Then I create...