Anyone could please help me with my index.php?
If I just print something like this it shows fine.
<?php
phpinfo();
?>
No error, the class and methods are in their file, but it blanks the entire page after this. Not even phpinfo() shows anymore.
<?php
$fApple = new fruitClass;
$fApple->set_fruitName("Apple");
echo "The Fruit is ".$fApple->get_fruitName();
phpinfo();
?>