AviNahum Posted November 19, 2008 Share Posted November 19, 2008 Hello!{sorry for very poor English, i from israel} i need some example of OOP script... <?php define( 'ROOT_PATH', "./" ); $decide = array( "index" => "Music", "gal" => "Gallery", "down" => "Download", "reg" => "Register", ); /***************************************************/ // $act = $_GET['act']; // Check to make sure the array key exits.. if (! isset($decide[ $act ]) ) { $act = 'idx'; } else { require ROOT_PATH."sources/".$decide[ $act ].".php"; } ?> someone give me that scrip but i can't understod what his tried to do... if someone can show me some script that show some content in the center of the page and the top comes from included file. and some links to other pages. like "Invision Power Board" system... thank! Quote Link to comment Share on other sites More sharing options...
waynew Posted November 24, 2008 Share Posted November 24, 2008 Will I throw in a custom CMS and shopping cart while I'm at it? class Person{ function say($string){ echo $string; } } require("person.php"); $person = new Person(); $person->say("I wish I was a real boy"); Quote Link to comment Share on other sites More sharing options...
corbin Posted November 24, 2008 Share Posted November 24, 2008 Hello!{sorry for very poor English, i from israel} i need some example of OOP script... <?php define( 'ROOT_PATH', "./" ); $decide = array( "index" => "Music", "gal" => "Gallery", "down" => "Download", "reg" => "Register", ); /***************************************************/ // $act = $_GET['act']; // Check to make sure the array key exits.. if (! isset($decide[ $act ]) ) { $act = 'idx'; } else { require ROOT_PATH."sources/".$decide[ $act ].".php"; } ?> someone give me that scrip but i can't understod what his tried to do... if someone can show me some script that show some content in the center of the page and the top comes from included file. and some links to other pages. like "Invision Power Board" system... thank! Nothing in your example is OOP. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.