Skip to content

Instantly share code, notes, and snippets.

@AndyNovo
Created April 26, 2016 17:04
Show Gist options
  • Save AndyNovo/34ad6286cea7cd8a495de42199c37ec1 to your computer and use it in GitHub Desktop.
Save AndyNovo/34ad6286cea7cd8a495de42199c37ec1 to your computer and use it in GitHub Desktop.
This is HTML <?php print_r($data); ?>
<?php
$data = ["a"=>"banana"];
ob_start();
include("template.html");
$sHtml = ob_get_clean();
echo $sHtml;
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment