你说的是AJAX,想要提交一个信息,然后再让SERVER返回,现在最方便的就是使用AJAX了。
否则,使用SOAP也行呀。

解决方案 »

  1.   

    $value = fgets(fopen('https://secure.comodo.net/products/!AutoApplySSL','r'));$value 就是你得到的值得;
    再用switch,进行操作
      

  2.   

    楼上的方法尽管可以得到返回的值,但是那个网页一定要求是用POST传递参数的,你那么做应该只能是用GET的方式吧。
      

  3.   

    function request_by_other($remote_server,$post_string){ 
        $context = array( 
            'http'=>array( 
                'method'=>'POST', 
                'header'=>'Content-type: application/x-www-form-urlencoded'."\r\n". 
                          'User-Agent : Jimmy\'s POST Example beta'."\r\n". 
                          'Content-length: '.strlen($post_string)+8, 
                'content'=>'mypost='.$post_string) 
            ); 
        $stream_context = stream_context_create($context); 
        $data = file_get_contents($remote_server,FALSE,$stream_context); 
        return $data; 
    }
    环境支持的话curl也可。