dsam70528 2017-08-22 14:03
浏览 47
已采纳

获取非法字符串偏移'uid'

Please dont marked as DUPLICATE. I know there are a lot of posts with these error but none seem to be the same issue as mine.

What I am trying to do is to pull up data based on a uid/date from/date to. The UID is related to a login session where it represents the user's ID.

Here is my HTML code,

<input type="text" readonly name="uid" id="uid" value="<?php echo $_SESSION['myusername']; ?>" />
<input type="date" name="from" id="from" value="<?=$date['from']; ?>" />
<input type="date" name="to" id="to" value="<?=$date['to']; ?>" />
<input type="submit" value="Submit" />

So from the code above, UID is a read-only and user can only select dates. So by default user can only get data from db with his own UID using different set of dates.

Here is my SQL code,

if($date['from'] !== NULL && $date['to'] !== NULL){
    // get table data
    $sql = 'SELECT `id`, `changeid`, `implemented_by`
    FROM `tracker` WHERE `implemented_by` = $uid `scheduled_start_date` BETWEEN :d1 AND :d2';
    $stmt = $conn->prepare($sql);
    $stmt->bindParam(':uid', $uid['uid'], PDO::PARAM_STR);
    $stmt->bindParam(':d1', $date['from'], PDO::PARAM_STR);
    $stmt->bindParam(':d2', $date['to'], PDO::PARAM_STR);
    $stmt->execute();
    $result = $stmt->fetchAll(PDO::FETCH_ASSOC);

Now, every time I click on Submit button to retrieved the data I am getting this error,

Warning: Illegal string offset 'uid' in C:\*\update_status_test.php on line 130

Fatal error: Only variables can be passed by reference in C:\*\update_status_test.php on line 130

Line 130 refers to below,

$stmt->bindParam(':uid', $uid['uid'], PDO::PARAM_STR);

Can anyone help me understand why its giving such an error, I'm new to PHP and cant seem to comprehend the error.

  • 写回答

2条回答 默认 最新

  • dsgdfg30210 2017-08-22 14:20
    关注

    Fixed code:

    // get table data
    // Fixes are in query text
    // 1. replace $uid with :uid placeholder
    // 2. add `AND` between conditions
    $sql = 'SELECT `id`, `changeid`, `implemented_by`
    FROM `tracker` WHERE `implemented_by` = :uid AND `scheduled_start_date` BETWEEN :d1 AND :d2';
    $stmt = $conn->prepare($sql);
    // as `$uid` is a simple string - pass it as is:
    $stmt->bindParam(':uid', $uid, PDO::PARAM_STR);
    $stmt->bindParam(':d1', $date['from'], PDO::PARAM_STR);
    $stmt->bindParam(':d2', $date['to'], PDO::PARAM_STR);
    $stmt->execute();
    $result = $stmt->fetchAll(PDO::FETCH_ASSOC);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥60 求一个简单的网页(标签-安全|关键词-上传)
  • ¥35 lstm时间序列共享单车预测,loss值优化,参数优化算法
  • ¥15 基于卷积神经网络的声纹识别
  • ¥15 Python中的request,如何使用ssr节点,通过代理requests网页。本人在泰国,需要用大陆ip才能玩网页游戏,合法合规。
  • ¥100 为什么这个恒流源电路不能恒流?
  • ¥15 有偿求跨组件数据流路径图
  • ¥15 写一个方法checkPerson,入参实体类Person,出参布尔值
  • ¥15 我想咨询一下路面纹理三维点云数据处理的一些问题,上传的坐标文件里是怎么对无序点进行编号的,以及xy坐标在处理的时候是进行整体模型分片处理的吗
  • ¥15 CSAPPattacklab
  • ¥15 一直显示正在等待HID—ISP