- android - RelativeLayout 背景可绘制重叠内容
- android - 如何链接 cpufeatures lib 以获取 native android 库?
- java - OnItemClickListener 不起作用,但 OnLongItemClickListener 在自定义 ListView 中起作用
- java - Android 文件转字符串
我是 PHP 领域的新手,我需要一些帮助。我正在尝试从数据库中提取数据,我正在使用 PDO 来完成它。我有以下 PHP 代码但没有成功,返回错误通知:
$pairingsistem='1';
$pecahan='1';
if($pairingsistem == "1"){
$skrg=time();
$tablaz = $pdo->query("SELECT * FROM tb_gh where saldo > 0 and status='pending' order by id ASC limit 0,1");
while ($registroz = $tablaz ->fetchAll(PDO::FETCH_ASSOC)){
//use $results
$kurirz=$registroz["username"]; //line 47 starts here
$biayaz=$registroz["saldo"];
$idnyaz=$registroz["id"];
$bankeem=$registroz["bank"];
$norekeem=$registroz["norek"];
$bitcoineem=$registroz["bitcoin"];
$pmeem=$registroz["perfectmoney"];
$fasapayeem=$registroz["fasapay"];
$namaeem=$registroz["nama"];
$phoneeem=$registroz["phone"];
$emaileem=$registroz["email"];
$paketzeem=$biayaz*$pecahan;
$surabaya=$paketzeem/$pecahan;
//shortline
Notice: Undefined index: username in /home/u427750052/public_html/automatch.inc.php on line 47
Notice: Undefined index: saldo in /home/u427750052/public_html/automatch.inc.php on line 48
Notice: Undefined index: id in /home/u427750052/public_html/automatch.inc.php on line 49
Notice: Undefined index: bank in /home/u427750052/public_html/automatch.inc.php on line 50
Notice: Undefined index: norek in /home/u427750052/public_html/automatch.inc.php on line 51
Notice: Undefined index: bitcoin in /home/u427750052/public_html/automatch.inc.php on line 52
Notice: Undefined index: perfectmoney in /home/u427750052/public_html/automatch.inc.php on line 53
Notice: Undefined index: fasapay in /home/u427750052/public_html/automatch.inc.php on line 54
Notice: Undefined index: nama in /home/u427750052/public_html/automatch.inc.php on line 55
Notice: Undefined index: phone in /home/u427750052/public_html/automatch.inc.php on line 56
Notice: Undefined index: email in /home/u427750052/public_html/automatch.inc.php on line 57
这是警告。尽管到目前为止,我已经在我的知识范围内解决了所有可能的问题。
最佳答案
你的 while
和 fetchAll
让你离开这里。您需要循环 fetch
或 fetchall
然后迭代返回的结果。
所以要么:
while ($registroz = $tablaz ->fetch(PDO::FETCH_ASSOC)){
或
$registroz = $tablaz ->fetchAll(PDO::FETCH_ASSOC);
foreach($registroz as $row) {
但由于您只返回 1 行,因此您不需要循环或 fetchall
。
$registroz = $tablaz ->fetch(PDO::FETCH_ASSOC);
应该可以解决问题。
关于php - PDO 抛出通知 : Undefined index when using fetchAll in a WHILE loop,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45406109/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!