exec(string $command[,array &$output[,int &$return_var]])
--Execute an external program
string escapeshellarg(string $arg);
string escapeshellcmd(string $command);
void passthru(string $command[,int &$return_va])
--Execute an external program and display raw output
&...
Property:
1:onReadStateChange[指定当readyState属性改变时的事件处理句柄。只写]
Example:
var xmlhttp=null;
function PostOrder(xmldoc)
{
var xmlhttp = new ActiveXObject("Msxml2.XMLHTTP.5.0");
xmlhttp.Open("POST", "http://myserver/orders/processorder.asp";, false);
...