These Page Need A Local Server (Ex : Apache) For Running The PHP Script !

For load document from another file / page



_loadDoc("./server/page.php",function(a,b,c){
if (a) { _printTo("display_body",a); } });
For load document from another file / page with GET


var my_name = "Lorem";
_requestGET("./server/profile.php?name="+my_name+"",function(a,b,c){ if (a) { _printTo("display_body",a); } });
For load document from another file / page with POST


var my_name = "Lorem";
_requestPOST("./server/profile.php","name="+my_name+"",function(a,b,c){ if (a) { _printTo("display_body",a); } });
For AJAX PUT

_requestPUT("./server/profile.php",function(a,b,c){ _writeLog(a); _writeLog(b); _writeLog(c); });