如何将上传按钮连接到WordPress媒体数据库?

时间:2019-07-08 13:13:11

标签: php html

我有一个带有文件上传按钮的表单,我想连接到WordPress媒体中的WordPress图像数据库。按下该按钮时,将显示文件上传选项,Fragment等,允许图像附加,但在表单提交时不上传。

HTML:

camera, files

PHP,用于连接数据库。

<button type="submit" class="btn 
button ur-submit-button">
<span></span>Submit</button><div 
style="clear:both"></div>
<input type="hidden" name="ur-user- 
form-id" value="6456"/>
<input type="hidden" 
id="ur_frontend_form_nonce" 
name="ur_frontend_form_nonce" 
value="82ebe8a59b" />       </form>
<div style="clear:both"></div>. 
</div>
</div><!-- .entry-content -->

用于存储图像的PHP

<?php
$host = 'localhost';
$user = 'root';
$pass = ' ';
mysql_connect($host, $user, $pass);
mysql_select_db('demo');
?>

请问我该如何进行这项工作?我在哪里放PHP,对吗?

0 个答案:

没有答案