I am currently dabbling in Magento and I want know how I can create a blank Hello World file whilst still including header, footer etc. I have read How to create a simple 'Hello World' module in Magento? – however I feel that this is too much for a static page.
I want to create http://www.site.com/magentolocation/helloworld.php
I want a blank PHP file and rather go down the module and MVC approach can I not just do:
<?php
include magconfig;
mag->header;
echo 'hello world' // or other static html
mag->footer;
?>
Simple.
I’m sure there might be a prettier way but here is a quick snippet for you: