What is the difference between using
<?php include("filename.inc"); ?>
and
<%parsedinclude(filename.inc)%>
Both work, but I'm curious about the < ? and < % convention, and this is a hard question to phrase for Google.
And also the difference between php include and parsedinclude
To answer your first question,
<?phpis the normal PHP open tag while<%is a variant of it that is used in Nucleus CMS (an open-source blog management software package written in PHP).Regarding the second question,
parsedincludeis a function in Nucleus CMS, and is not valid in normal PHP.Function of
parsedinclude: (quoted from Nucleus CMS Documentation)Function is
include: (quoted from Nucleus CMS Documentation)