how to create a class which holds the attributes of initial tags required in php code example
Example: declare variable in php class
<?php
class SimpleClass
{
public $var1 = 'hello';
}
?>
<?php
class SimpleClass
{
public $var1 = 'hello';
}
?>