我有一个关于如何获取文本框值的问题,我正在使用模态引导程序。我在PHP上使用while循环列出了我的数据。
这是显示我的数据的代码:
$query=mysql_query("select * from tbl_messages where alumni= '$alumni' GROUP BY title ");
while($res=mysql_fetch_array($query)){
echo "<a href='messageview.php?id=$msgID#myModal' role='button' data-toggle='modal' data-title= '".$res['title']."' class='messages'>".$res['title']."</a>";
echo "From:".$res['company'];
echo $res['message'];
这是模态。
X 信息
$db=mysql_query("select * from tbl_messages where title = '$msgTitle' and alumni = '$alumni' ")or die(mysql_error());
while($sa=mysql_fetch_array($db)){
echo "<div style='border:0px solid black;'>";
echo "<b>".$sa['user'].":</b><br>";
echo $sa['message'];
echo "</div>";
}
?>
</form>
问题是,我想得到我的while循环中列出的$ res ['title']并传递给php变量以放入我的SQL语句。有人可以帮帮我吗?请。非常感谢。
答案 0 :(得分:0)
你不能做简单的字符串连接吗?
$db=mysql_query("select * from tbl_messages where title = '" . $res['title'] . "'");
我没有运行此代码,因此您可能想要使用引号字符。顺便说一下,我认为这个问题与Bootstrap无关。