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 [ '內容']);
我在做什麼錯,我該如何解決這個問題。
閱讀手冊。互聯網有很多。 –
與此類似的東西可能適用於您'$ result = mysql_query'INSERT INTO table(data)VALUES(\''。mysql_real_escape_string(file_get_contents('/path/to/the/file/to/store.pdf'))。 '');';' – pavlovich
儘管在數據庫中存儲文件沒有什麼根本性的錯誤,但我會指出找到存儲在文件系統中的文件更爲常見 – Strawberry