使用javascript在html div中打开php页面

时间:2016-12-12 17:49:43

标签: php html mysql

我使用以下代码在div html中打开php / mysql页面: -

 $(document).ready(function(){
 $("#test").click(function(){
     $("#section2").hide();
    $("#section1").load("home/header.php").show();

 });
 });

当我按上传时,页面消失。

这是我加载php页面后的页面: -

Here the page after i loaded the php page

这是我按上传到mysql之后的页面:

here the page after i press upload to mysql

我使用此功能

function saveimage($name,$image) {
    $con=mysqli_connect("localhost","***","***");
    mysqli_select_db($con,'images');

  // $qry="insert into images(name,image) values ('$name','$image')";
  $qry="UPDATE images SET image='$image',name = '$name' WHERE id=1";
    $result=mysqli_query($con,$qry);
    if($result){
      echo '<div class="alert alert-success">Image Uploaded</div>';     
    } else {

     // echo   mysqli_error($con); 
        echo '<div class="alert alert-danger">Image Not Uploaded</div>';   
    }

   header("location:header.php");
    exit;
    mysqli_close($con);
}

0 个答案:

没有答案