You can place any external PHP files in the “Data” subfolder, so that they are found by the internal PHP engine.
See the “Accessing Files” topic of the General Demo that ships with ExeOutput, there are some samples that explain how it works.
If I include a PHP file that loads external content with URL’s, is there a way to force those links to open in users default browser? The external content is actually a live page on web server (ads).
Know that if I use special protocol like “heexternal://” can open default browser but need way to use default browser if possible.
Have external content that is pulled in from outside web site/server. The content sometimes has links. When those links are clicked on, links open in application and not the users default browser.
I cannot always control the content pulled in. Is there a way to force links to open in users default browser?
It won’t be that easy unfortunately. A possible way would be using PHP as some proxy server or filter: you could have PHP download your external content (file_get_contents PHP function), parse the HTML code for links (with regex) and modify them to include the heexternal:// protocol, then feed the internal browser with the new HTML code.