Hoping that something exists that can let a person view the includes files in a php script as if they were not included but copy-pasted in their respective locations in a script.
example:
main script:
<?php
echo "hey is my includes: ";
include_once myincludedfile.php;
?>
myincludedfile.php
<?php
echo "an included file";
?>
So the ide would integrate them automatically to yield:
<?php
echo "hey is my includes: ";
echo "an included file";
?>
Dreamweaver's live view does this but the code is read only. Any non-read only alternatives?



Reply With Quote


Bookmarks