I want to make my website pages more dynamic.
Can I do this using:
$file=”articledetails.php”;
include(‘$file’);
You can also use like this: include(“$file”);
variables won’t be parsed between single quotes.
Code:
include($file);
I want to make my website pages more dynamic.
Can I do this using:
$file=”articledetails.php”;
include(‘$file’);
You can also use like this: include(“$file”);
variables won’t be parsed between single quotes.
Code:
include($file);