gpt4 book ai didi

php - 使用存储在 mysql 文本中的变量

转载 作者:行者123 更新时间:2023-11-29 07:45:37 26 4
gpt4 key购买 nike

我有一种情况,我需要能够存储来自 mysql 的变量。我正在创建的页面是动态的并且包含不同的用户数据,我追求的是以下内容

//stored in user database
$firstname = "BOB"
$lastname = "MARLEY"

//how i want th content from a mysql database to display in html
hello my name is BOB MARLEY

//how it displays at the moment
hello my name is $firstname $lastname

我似乎根本无法解决

这是我当前的数据库代码

<?php
$firstname= "BOB";
$lastnamename= "marley";
$get_content= mysqli_query($con,"SELECT * FROM tbl_forms_content WHERE forms_content_formid='1' LIMIT 1 ");
while($found_content = mysqli_fetch_array($get_content))
{
echo $found_content['forms_content_content'];
}
?>

非常感谢任何帮助

最佳答案

最简单的方法是将它们替换为 str_replace;

echo str_replace(array('$firstname', '$lastname'), array($firstname, $lastname), $found_content['forms_content_content']);

可以在这里看到一个工作示例; http://codepad.org/xFEowbMZ

关于php - 使用存储在 mysql 文本中的变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27893099/

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