這是我的PHP代碼:IBM worklight - 如何將請求參數發送到PHP文件?
<?php
mysql_connect("localhost","root","");
mysql_select_db("sowrun_mobile");
$ad_id = $_REQUEST['ad_id'];
$sql=mysql_query("SELECT * FROM tbl_user_registration where reg_AD_ID='".$ad_id."'");
$row='';
while($row=mysql_fetch_assoc($sql)){
$output[]=$row;
}
if($row == ''){
$out['reg_AD_ID'] = '111111';
$output[]=$out;
}
$jsonStr = json_encode($output);
print($jsonStr);
mysql_close();
?>
我試圖從工作燈適配器以下方法發送參數adid
:
function getFeeds() {
WL.Logger.debug("inside method");
var input = {
method : 'get',
returnedContentType : 'json',
path : "ios/ClientadID.php"
};
ClientadID.php
包含這是寫在第一個代碼的代碼上面的樣品。
我正嘗試使用以下參數從適配器發送請求,同時調用 該過程。在參數窗口我送ad_id=1
但錯誤是投擲:
說明:未定義指數:ad_id在C:\瓦帕\ WWW \ IOS \ ClientadID.php 第6行
請張貼的代碼** C:\ wamp \ www \ ios \ ClientadID.php **文件 –