寫留言板時常見錯誤

2021-07-30 14:48:33 字數 873 閱讀 5945

一、fatal error: call to undefined function……

函式不存在

二、syntax error, unexpected t_string, expecting……

嚴重語法錯誤

三、parse error: syntax error, unexpected t_variable in ***.php on line ***

這條語句是php常見的報錯,一般是在***行的上一行,或者是***行,缺少分號。

四、parse error: syntax error, unexpected 'x' in ***.php on line ***

報錯原因是在***.php的***行,出現了php無法識別的字php

五、syntax error, unexpected $end  

邏輯忘了閉合

六、notice:undefined varialbe:……

error_reporting調整錯誤級別

一.新增:insert into [表名] values('','',......順序排列的資料);

二.查詢: select * from [表名] where ([條件]);

.帶條件的查詢:

1.select *from 表名 where 列名=條件值;

2.select * from 表名 where 列名 not like(like) '字元值'

3.分頁查詢:select *from 表名 limit 每頁數量 offset 偏移量;

4.刪除:delete from [表名] where ([條件]);

5.修改:update [表名] set [修改內容如name = 'mary'] where [條件];

thinkphp寫的留言板

第一步當然是建立thinkphp專案了,這個簡單,照著手冊完全沒問題。1,新建乙個檔案件,就取個拼音名吧,為 liuyan,即專案名稱,並建立乙個index.php的檔案,我們稱之為專案入口檔案。2,把thinkphp核心目錄放到liuyan專案裡面來,開啟index.php檔案,新增如下內容 de...

留言板骨架

顯示頁 form action lyb index.php index insert.html method post input name text type text value 表單提交 action位址要換成thinkphp裡的u方法,也就是去控制器裡找方法,這個方法負責接收post來的資料...

PHP留言板 一看就會的留言板

1.資料庫建立乙個message表用來儲存資料 2.連線資料庫 我是原生代pdo host 127.0.0.1 port 3306 埠 username root 使用者名稱 password root 密碼 dbname 表名 dsn mysql dbname dbname host host 拼...