How can I have menu option to open simple HTML (no PHP) page with some text ?
This will be a static text so no need to store it in database.
I tried to create BANK App and throw some HTML but I get errors.
Arthur
How can I have menu option to open simple HTML (no PHP) page with some text ?
This will be a static text so no need to store it in database.
I tried to create BANK App and throw some HTML but I get errors.
Arthur
Hello Arthur,
It is pretty easy using a blank application, just keep in mind that you need to “unwrap” the content to take it out from PHP context, example:
// close php tag
?>
<html>
<head>
</head>
<body>
</body>
<h2>Hello World</h2>
</html>
<?php
// reopening tag
Consider show us the errors that you are receiving to determinate what is happening.
Your suggestion worked great. Thank you.
Art