Hi there Mani and welcome to DaniWeb. I didn't know the answer to your question so I have spent some time googling for it. I believe that you may find what you require here :
Hi there Mani and welcome to DaniWeb. I didn't know the answer to your question so I have spent some time googling for it. I believe that you may find what you require here :
Look at Creating a Shared Assembly (almost halfway down the page) I believe your answer lies there. Hope this helps and good luck!
Thanks for your reply. and thanks for spent some time for me.
I try to create a simple OOP PHP that shows an error:
class_lib.php
<?php
class person {
var $name;
function __constructor($person_name){
echo "Initialize class";
}
function set_name($new_name){
$this->name($new_name);
} ...