php - Is it possible to include just a specific div of a file? -
is possible include specific div of file? this:
<?php include ('store.php/footer');?>
not using include
function.
you read file string fopen
, parse domdocument
extract bit want dom methods , echo
result – wouldn't process php in file. you'd have eval
(or similar) separately.
you'd better off restructuring php parts want use in separate files start , include them multiple places.
Comments
Post a Comment