reivax Posted January 10, 2017 Report Share Posted January 10, 2017 Hi is any way to embed the live map and airline map that are installed on php server and php web, via HTML CODE on web side that work via HTML? please help Quote Link to comment Share on other sites More sharing options...
flyalaska Posted January 10, 2017 Report Share Posted January 10, 2017 31 minutes ago, reivax said: Hi is any way to embed the live map and airline map that are installed on php server and php web, via HTML CODE on web side that work via HTML? please help <?php Template::Show('frontpage_acars.php'); ?> I changed the file name from the default. Quote Link to comment Share on other sites More sharing options...
t_bergman Posted January 11, 2017 Report Share Posted January 11, 2017 I believe you can only do this via an iframe. If your page is truly only HTML then only static content can be displayed. It may be possible with HTML5 but someone more familiar will need to chime in for that. Quote Link to comment Share on other sites More sharing options...
reivax Posted January 12, 2017 Author Report Share Posted January 12, 2017 i found some information at other forum, but its really hard to understand, maybe you guys can. By the way thanks for the help. !--Insert into the layout.php file first before calling any outside scripting Below initializes the call functions.This also MUST be in between the <head>HERE</head>. NOT the <body> See below for calling your outside pages.--> <!-- start call outside scripts-html etc pages--> <script type="text/javascript"> var rootdomain="http://"+window.location.hostname function ajaxinclude(url) { var page_request = false if (window.XMLHttpRequest) // if Mozilla, Safari etc page_request = new XMLHttpRequest() else if (window.ActiveXObject){ // if IE try { page_request = new ActiveXObject("Msxml2.XMLHTTP") } catch (e){ try{ page_request = new ActiveXObject("Microsoft.XMLHTTP") } catch (e){} } } else return false page_request.open('GET', url, false) //get page synchronously page_request.send(null) writecontent(page_request) } function writecontent(page_request){ if (window.location.href.indexOf("http")==-1 || page_request.status==200) document.write(page_request.responseText) } </script> <!-- end of call outside scripts initializing coding. For the <head> area, by Jungle--> <!--/==============================================================================<body tag>/--> <!--How to call your pages ! Place in <body> only, anywhere you feel it functions good. Do not enter a named domain, the (rootdomain makes the script call, just add the folders as example below--> EXAMPLE:::: <script type="text/javascript"> ajaxinclude(rootdomain+"/myphpvms-va/core/pages/mymenu.html") <!--you can call anything!--> </script> Quote Link to comment Share on other sites More sharing options...
reivax Posted January 12, 2017 Author Report Share Posted January 12, 2017 On 11 de enero de 2017 at 0:32 AM, flyalaska said: <?php Template::Show('frontpage_acars.php'); ?> I changed the file name from the default. for example i have only to put this in my wixsite and thats it? or how? thanks =) Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.