gpt4 book ai didi

php - 需要输入动态查询输出脚本

转载 作者:行者123 更新时间:2023-11-30 23:27:13 26 4
gpt4 key购买 nike

我有一个主页,其中有一堆图像作为指向包含该图像信息的其他页面的链接。

Image Name: $varExampleNAME
Damage: $varExampleDMG
Health: $varExampleHP
Mana: $varExampleMP

因此,此页面上唯一会更改的信息将是变量。我想要的是运行一个查询脚本,以便根据 $currentPage 的 $fileName如果 $fileName 与某个行名称匹配,它会从表中获取该行。

这是找出我的文件名的脚本:

//include database connection file
include_once 'connect_to_db.php';

$currentFile = $_SERVER["SCRIPT_NAME"];
$img = array_pop(explode("/", $currentFile));
$fileName$ = basename($img, ".php").PHP_EOL;

我在使用实际查询脚本时遇到问题。谁能阐明这将如何完成?

我的表名称是 image_Name

列包括 id、名称、伤害、生命值、魔法值。

最佳答案

您应该设计表格以满足您的需求,在本例中是根据参数检索行。

如果表的name字段与脚本文件名一致,你应该[使用PDO] ]:

// Create a connection handler - provide your credentials
$dbh = new PDO('mysql:host=localhost;dbname=yourDbNane','username','password');

// Prepare the query with a placeholder
$dbh->prepare('SELECT * FROM image_Name WHERE name = ?');

// Fill the placeholder with the filename
$dbh->execute( array($fileName) );

// Fetch the result, you are done!
$img = $dbh->fetch();

关于php - 需要输入动态查询输出脚本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12648683/

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