将php数组的部分提取到客户端

时间:2015-06-15 13:07:20

标签: php html arrays request

所以我试图将产品集中在一个中央php文件中并让我的客户端php只是请求信息所以我只需编辑中央php文件来添加和删除产品

我的服务器端

 $varProduct= (

//      [0]      [1]   [2] [3 4 5 6 7]             [8]  
array("Title" , 0001 , 100, 0,0,1,1,0, "/womens/tops/s/2.png", "/womens/tops/s/2.jpg", "/womens/tops/s/2.jpg", 50  )

 )

在我的html客户端,我想显示标题,价格[2]和网址[8] 基本上

for(i=o, i< $varProduct.length(), i++){

//display $varProduct[i][0];
//display the Image for $varProduct[i][8];
//display  $varProduct[i][2];

}

如何在html标记内将服务器端文件中的值放到客户端?我需要内联显示它们我能够格式化变量吗?

1 个答案:

答案 0 :(得分:1)

尝试这样的事情

<?php
for ($i = 0; $i < count($varProduct); $i++) {
    //full path -- then post pram
    $return =  sendPostData("http://stackoverflow.com/", array('parm1' => $varProduct[$i][0], 'parm2' => $varProduct[$i][0]));
    print_r($return);
}
?>

<?php

//send data function
function sendPostData($url, Array $post) {
    $data = "";
    foreach ($post as $key => $row) {
        $row = urlencode($row); //fix the url encoding
        $key = urlencode($key); //fix the url encoding                
        if ($data == "") {
            $data .="$key=$row";
        } else {
            $data .="&$key=$row";
        }
    }
    $ch = curl_init($url);
    curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
    curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1);
    curl_setopt($ch, CURLOPT_POST, 1);
    $result = curl_exec($ch);
    curl_close($ch);  // Seems like good practice
    return $result;
}
?>