Postingan

Gambar
PHP Include And Require Files Hello , in this section we will learning php function about Include() and Require() like, what is the use of function Include() and Require() , What is differences between 2 of them ? ,  and what is differences using _once in PHP ? . What Is the use Function of Include() and Require() ? Function of Include() and Require() is a function are used to insert some php file to other php program , so with this code it'll be helpfull to make program because we don't need to write a code repeatedly and we just need a php file to insert it . What is the differences between Include() and Require() ? Actually Include() and Require it's the same function but they just have significant differences , Include() statement will only generate PHP warning but they allow to execute the script to continue if the file to be included cannot be found , while Require statement will generate Fatal Error and stop the script execution.  What