I am just coding an html page for web developers. For convenience, I use php. For example, in index.php I have <?php include('header.php'); ?>one that includes all the css and js files.
Dreamweaver cc does an undestand include header.php and displays it in the Related Files section. But does not show the included css 'and js'. Even when I create dynamically linked Discover files.
Is it possible for Dreamweaver to go through header.php and show all the css and js files listed there? header.php has simple html code like
<link rel="stylesheet" href="css/container.css" type="text/css">
source
share