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条)

报告相同问题?

悬赏问题

  • ¥20 完全没有学习过GAN,看了CSDN的一篇文章,里面有代码但是完全不知道如何操作
  • ¥15 使用ue5插件narrative时如何切换关卡也保存叙事任务记录
  • ¥20 软件测试决策法疑问求解答
  • ¥15 win11 23H2删除推荐的项目,支持注册表等
  • ¥15 matlab 用yalmip搭建模型,cplex求解,线性化处理的方法
  • ¥15 qt6.6.3 基于百度云的语音识别 不会改
  • ¥15 关于#目标检测#的问题:大概就是类似后台自动检测某下架商品的库存,在他监测到该商品上架并且可以购买的瞬间点击立即购买下单
  • ¥15 神经网络怎么把隐含层变量融合到损失函数中?
  • ¥15 lingo18勾选global solver求解使用的算法
  • ¥15 全部备份安卓app数据包括密码,可以复制到另一手机上运行