Frequently Asked Questions

Skinning using NL-ConvertToPHP?

Can I skin my site if I use NL-ConvertToPHP?

Yes. Simply add this to the top of index.php:

<?php include '/home/site/public_html/cookiecheck.php'; ?>

And then change:

include 'header.inc';

To:

include $headervar . $skin . $extension;

And

include 'footer.inc';

To:

include $footervar . $skin . $extension;

:)