I made a website, I probably didn't do it like I should have, but I was new to PHP at the time. So in order to save me lots of frustration of trying to re-write a script to display photos on my site, I need to run a *.php file, and make the output if it go into a var called "$html". I know it might sound strange, but that's what I need.
From inside index.php, I include photos.php; In photos.php, I need to declare $html with the output of a script called photos_page.php;
For example:
$html = parse_my_script("../photos_page.php");
Thank you