我正在使用以下内容尝试在'calls'字段中显示数据,其中“people_id”字段等于1:
$query1 = mysql_query("SELECT calls FROM ae8vo_survey WHERE people_id = '1'");
$result = mysql_fetch_array($query1);
echo $result['calls'];
即使查询工作正常,也没有显示任何内容。
答案 0 :(得分:0)
我也有这个问题,你必须用数字来呼叫
所以试试......
echo $result[0];
答案 1 :(得分:0)
试试这个
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<fragment
android:id="@+id/map"
android:layout_width="match_parent"
android:layout_height="match_parent"
class="com.google.android.gms.maps.SupportMapFragment" />
</RelativeLayout>