使用$ user_id检索和显示数据

时间:2017-12-26 00:28:02

标签: php mysql

我的目标是从mysql数据库的users表中显示用户生物数据的剪辑 每当用户将一个帖子显示在feed-view.php页面上时,就像 可以在facebbok和twitter中使用$ user_id和消息一起传递到 当用户发帖时,在mysql数据库中发布表。 所以我正在尝试使用用户的$ user_id(谁发帖)来查询用户的生物数据 数据库中的表。我正在寻找显示图像和一些其他信息,如 name,phonenumber等也可以创建一种循环,以便后续帖子假设相同 模板或结构。我在下面设计的代码失败了。我需要帮助。

其次, 我尝试使用会话变量将数据从users表传输到posts表作为一种方法 获得在发布帖子时要显示的已登录用户的生物数据 但我在转移包含图像(jpeg)示例的会话变量时受到了阻碍 是$ image = $ _SESSION ['image'];因为我试图将值转移到posts表 它说,要显示在feed-view页面中 “错误您的SQL语法有错误;请查看与您的语法相对应的手册  MariaDB服务器版本的正确语法使用''id ='W5M0MpCehiHzreSzNTczkc9d'?>“

目标: 是显示发布帖子或帖子的用户的生物数据(即图像,名称等) 正在feed-view.php页面上显示,并创建一种循环,以便后续帖子假设相同 模板或结构。

            <?php
           session_start();
           if(!isset($_SESSION['username'])){
            header('location:landing page.php');


      include_once('server.php');
      //include_once('server2.php');

       function load_user_objects($user_id){

      $query = "select * from clientcompany where id = '$user_id'"; 

      $result = mysqli_query($conn,$sql);

      if (!$result){
      return "no user found";
     }
    return $result[0];
    }   
    }

    ?>



   <!DOCTYPE html>
    <html>
    <head>
    <title>W3.CSS</title>
     <meta name="viewport" content="width=device-width, initial-scale=1">

    </head>
    <body>

    <div>
     <?php
    include_once('server.php');
      $sql = "SELECT * FROM post ORDER BY DESC";
     $result = mysqli_query($conn,$sql);

      function load_user_objects($user_id){
       $query = "select * from users where id = '$user_id'"; 

      $result = mysqli_query($conn,$sql);

       if (!$result){
       return "no user found";
      }  
       return $result[0];
     }

    function do_news_feed($user_id){
        $status_objects = $this->get_status_objects($user_id);

    foreach($status_objects as $status){?>
    <div>
     <?php $users = $this->load_user_objects($status->user_id);?>



    <?php       //this attempts to display foto of a user who makes a           post. Image accessed from users table.
       include_once('server.php');
       function getimage($user_id){ 
       $query = "SELECT image FROM users WHERE id = '$user_id'";  
         $result = mysqli_query($conn,$query);
        while($row = mysqli_fetch_array($result))
     {
      echo $users->'<img src="data:image/jpeg;           base64,'.base64_encode($row['image']).'"class="w3-circle" alt="userfoto"     

        style="width:100px; height: 100px; margin-top: 70px; margin-left:             20px">';
       }
       }

       ?>

         <?php // this attempts to access the users table to display data              using the load_user_objects function
         echo $users->name;
         ?>
         <?php
         echo $users->location[posts table][1];
         ?>  


          <?php // this attempts to access the posts table to display data.
         echo $status->title;
          ?>
          <?php 
        echo $status->message;
         ?>

        </div>
        <?php
         }
          }
          ?>
         </div>
        </body>
       </html>

1 个答案:

答案 0 :(得分:0)

可能你在MariaDB上遇到了这个错误,因为你错了这个行(你发送MariaDB来按空字段排序行):

$sql = "SELECT * FROM post ORDER BY DESC";

阅读你的问题,我想你想要通过&#34; id&#34;来订购所有的行。字段,所以你必须为这一行替换错误的行:

$sql = "SELECT * FROM post ORDER BY id DESC";

这样,MariaDB不会抛出该错误,您可以继续发展您的想法