2015-11-29 211 views
0

我試圖在mysql數據庫中存儲pdf文件。但是我收到了一些錯誤。mysql數據庫中的文件存儲

這是我的HTML -

<input type="file" class="form-control" id="content" name="content" accept=".pdf"> 

這是我的PHP代碼 -

$contents = file_get_contents($_FILES['content']); 

但我總是收到此錯誤---

注意:未定義index:content in $ contents = file_get_contents($ _ FILES ['content']);

警告:file_get_contents()函數:文件名不能在$內容空= 的file_get_contents($ _ FILES [ '內容']);

我在做什麼錯,我該如何解決這個問題。

+3

閱讀手冊。互聯網有很多。 –

+0

與此類似的東西可能適用於您'$ result = mysql_query'INSERT INTO table(data)VALUES(\''。mysql_real_escape_string(file_get_contents('/path/to/the/file/to/store.pdf'))。 '');';' – pavlovich

+1

儘管在數據庫中存儲文件沒有什麼根本性的錯誤,但我會指出找到存儲在文件系統中的文件更爲常見 – Strawberry

回答

相關問題