Hello there,
Is there any way to use a PHP var ($page_title) inside an ASP file?
I am gradually migrating from ASP/MS Access to PHP/MySQL but for the time being have to keep my Front Page generated ASP pages connected to MS Access db.
My system is W2k pro, IIS5, PHP5.
The ASP page I would like to mingle with PHP already contains included php file:
<!-- #include file="../includes/header.php"-->
The header.php contains the following code, I am expecting to work from within my ASP pages the same way it works from within my PHP files:
<title><?php echo $page_title ; ?></title>
All I want to do is to find a way to assign a value for $page_title inside ASP file.
Is it doable?
Thanks,
phper2