Hi all.
i m trying to use the B4J Server to replace the PHP/Apache.
so far I'm enjoying it, everything is easy.
A small doubt, I have been using PHP for some time and I got used to some functions, one of which is require or include.
is there any way to do include or require in B4J?
Sometimes it is very useful as, for example, on a website, I usually create a topMenu.php page and use this menu on all other pages like index, contact etc ..., when I need to edit the menu I edit only mine topMenu.php, without having to update page by page.
the code of my PHP pages is usually like this
include "header.php";
include "topMenu.php";
website Content
include "footer";
its possible make this (includes) on B4J? without having to compile .jar all the time?
i m trying to use the B4J Server to replace the PHP/Apache.
so far I'm enjoying it, everything is easy.
A small doubt, I have been using PHP for some time and I got used to some functions, one of which is require or include.
is there any way to do include or require in B4J?
Sometimes it is very useful as, for example, on a website, I usually create a topMenu.php page and use this menu on all other pages like index, contact etc ..., when I need to edit the menu I edit only mine topMenu.php, without having to update page by page.
the code of my PHP pages is usually like this
include "header.php";
include "topMenu.php";
website Content
include "footer";
its possible make this (includes) on B4J? without having to compile .jar all the time?