i'm new to PHP, so please be gentle.
my question is this, is it possible to pass variables to the require() function? for example, something like this:
createPage($cssInc) {
print ("\n");
print ("<head>\n");
print ("<title>PHP FUN</title>\n");
print ("</head>\n");
require($cssInc);
...
and call it with this:
createPage(stylesheet.inc);
thanks much.