QR Codes generation from MySQL rows

前端 未结 1 1502
你的背包
你的背包 2021-01-26 07:25

I have a serious problem, maybe to some it\'s not so serious, but as I am not good with programming, for me it\'s a really tough problem. I will try to explain all clearly:

相关标签:
1条回答
  • 2021-01-26 08:03

    Okej, you can try do something like this:

    $result = mysql_query("SELECT * FROM test_image WHERE image = ''") or die(mysql_error());
    while($row = mysql_fetch_array($result))
    {
        echo 'Working with id '.$row['id'].' and name '.$row['name'].'<br />';
        // DO YOUR CODE FOR THIS ROW IN YOUR TABLE
    }
    
    0 讨论(0)
提交回复
热议问题