Sorry for the bad title, i don't have any idea what title i should put on top.
Ok, here my question, this code maybe can tell you what problem i have right now..
File : -
utilities.php -> class utilitites
http.php -> class http
In http.php file
<?php
required_once('utilities.php');
class http extends utilities {
// code right here..
}
?>
In utilities.php file
<?php
required_once('http.php');
class utilities extends http {
// code right here..
}
?>
I'm getting error in utilities.php file, it's said..
Fatal error: Class 'http' not found in C:\xampp\htdocs\project\utilities.php on line 5
So what problem is really do I have ?