通过php

时间:2016-08-18 18:00:12

标签: php android mysql android-volley

我正在尝试将图片上传到我的服务器,但似乎无法让它运行起来。我正在使用android和volley获取图像,然后将其发送到php上传。

我也在使用wamp。

表示"已成功上传"但不在目录中?

PHP代码:

<?php

     if($_SERVER['REQUEST_METHOD']=='POST'){

         $image = $_POST['image'];
         $username = $_POST['username'];
         require_once('dbConnect.php');
         $sql ="SELECT profilepictureID FROM tbl_userprofilepictures ORDER BY profilepictureID ASC";
         $res = mysqli_query($con,$sql);
         $profilepictureID = 0;

         while($row = mysqli_fetch_array($res)){
             $profilepictureID = $row['profilepictureID'];
         }

         $path = "000001/$profilepictureID.JPG";
         $actualpath = "http://*wamp server ip*/Users/Images/$path";

         $sql = "INSERT INTO tbl_userprofilepictures(username,profilepicturepath) VALUES ('$username','$actualpath')";

         if(mysqli_query($con,$sql)){
             file_put_contents($path,base64_decode($image));
             echo "Successfully Uploaded";
         }

         mysqli_close($con);
     } else{
         echo "Error";
     }

 ?>

0 个答案:

没有答案