<?php
$title = $_POST['title'];
$date = $_POST['date'];
$time = $_POST['time'];
$channel = $_POST['channel'];
mysql_connect("localhost","root","");
mysql_select_db("imammuda");
$sql=mysql_query("insert into Program (ID, Title, Date, Time, Channel) values ('NULL', $title, $date, $time, $channel);
mysql_close();
?>
這是我的POST運行PHP時插入數據爲什麼會出現意想不到的錯誤?
private void adddataintophp(String title, String date, String time, String channel){
ArrayList<NameValuePair> nameValuePairs = new ArrayList<NameValuePair>();
//http post
try{
nameValuePairs.add(new BasicNameValuePair("title", title));
nameValuePairs.add(new BasicNameValuePair("date", date));
nameValuePairs.add(new BasicNameValuePair("time", time));
nameValuePairs.add(new BasicNameValuePair("channel", channel));
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://10.0.2.2/insertprogram.php");
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();
is = entity.getContent();
}catch(Exception e){
Log.e("log_tag", "Error in http connection"+e.toString());
}
}
,它給了我
Parse error: syntax error, unexpected $end in C:\wamp\www\InsertProgram.php on line 10
我不知道爲什麼就不能結束。
請幫助我在郵政那裏,我認爲有一些錯誤,我沒有找到它。
正如您在語法高亮顯示中看到的那樣,您缺少一個引號,請確保您使用的IDE或編輯器的語法突出顯示 – 2011-05-19 10:00:41
@Pekka - 甚至是SO的語法高亮顯示它。 - ) – 2011-05-19 10:05:47