Q. In the following PHP program, what is/are the properties?
Code:
<?php
class Example
{
public $name;
function Sample()
{
echo "Learn PHP";
}
}
?>
โ
Correct Answer: (C)
public $name;