我可以将mySQL中的数据提取到include语句中,这样就可以打开我放入“theme”字段的任何URL
<?php include("<? echo $rows['theme']; ?>"); ?>
我想将它添加到index.php,我有一个可编辑的表单,我可以在其中添加任何URL到字段主题。有人可以帮助我让这个工作吗?
答案 0 :(得分:1)
简单:
<?php include($rows['theme']); ?>
答案 1 :(得分:1)
<?php
// here you are already inside the php tags so you don't need any others
include($rows['theme']); // you don't need to echo anything just pass the value
?>
但是我建议你使用switch语句检查$ rows ['theme']
上的值答案 2 :(得分:0)
你可以:
<?php
$theme = $rows['theme'].".php";
include($theme);
?>
但是如果来自用户,你应该验证输入。