如何在mysql

时间:2018-06-07 06:47:29

标签: php jquery mysql

我想上传图片并希望存储在数据库中。我在表名图片类型blob中创建了字段

function bs_input_file() {
	$(".input-file").before(
		function() {
			if ( ! $(this).prev().hasClass('input-ghost') ) {
				var element = $("<input type='file' class='input-ghost' style='visibility:hidden; height:0'>");
				element.attr("name",$(this).attr("name"));
				element.change(function(){
					element.next(element).find('input').val((element.val()).split('\\').pop());
				});
				$(this).find("button.btn-choose").click(function(){
					element.click();
				});
				$(this).find("button.btn-reset").click(function(){
					element.val(null);
					$(this).parents(".input-file").find('input').val('');
				});
				$(this).find('input').css("cursor","pointer");
				$(this).find('input').mousedown(function() {
					$(this).parents('.input-file').prev().click();
					return false;
				});
				return element;
			}
		}
	);
}
<div class="form-group">
  <label class="control-label col-md-3 col-sm-3 col-xs-12" for="Pic">Picture/File</label>
<div class="col-md-9 col-sm-7 col-xs-12">   
   
<div class="input-group input-file" > 
			<span class="input-group-btn">
        		<button class="btn btn-info btn-choose" type="button">Choose</button>
    		</span>
    		<input type="text" class="form-control" id="Pic" name = "ID" placeholder='Choose a file...' />
    		<span class="input-group-btn">
       			 <button class="btn btn-danger btn-reset " type="button">Reset</button>
    		</span>
		</div>
   </div>
</div>

这是我写入上传图片现在我想将此图像存储到数据库中。然后想要检索并显示图像。

0 个答案:

没有答案