gpt4 book ai didi

php - 将sql结果集转换为字符串,php

转载 作者:行者123 更新时间:2023-11-28 23:43:14 24 4
gpt4 key购买 nike

我有两个 php 脚本,比如调用另一个 php 的“first.php”和具有 GET 值的“second.php”脚本。

first.php 使用GET 方法调用second.php。

GET 方法值是从数据库中检索的字符串。

first.php代码

$someString = mysqli_query($connectionName,"SELECT someString from db where id=1";

/* Then the php redirects to ->" */

'mywebsite.com/PHP/second.php?data='.someString

second.php

if(isset($_GET['data']))
{
$new_data = $_GET['data'];

}

我的问题是,“someString”中的数据是结果集格式,所以我收到一个 php 错误,提示 GET 方法需要一个字符串值。

有没有办法把sql结果集转成字符串?

最佳答案

试试这个。

$someStringRes = mysqli_query($connectionName,"SELECT someString from db where id=1";

$row=mysqli_fetch_row($someStringRes);

$someString = $row[0];

/* Then the php redirects to ->" */

'mywebsite.com/PHP/second.php?data='.someString

关于php - 将sql结果集转换为字符串,php,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34014080/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com