0
Is there a way to create external php?
Like the ones that can be created when working with css or javascrip.
3 Respostas
+ 1
you can create external php script havibg only php content in it with no html and it can be included in html using include or require at the starting of your another php file
+ 1
You can include another PHP file within a PHP file using the include function or require. If you want to include a file name foobar.php, just use require "foobar.php".
0
@Venky Thanks, I'll try it in order to see how it works.