gpt4 book ai didi

php - html 中来自 mysql 数据库的数据

转载 作者:行者123 更新时间:2023-11-30 00:42:55 25 4
gpt4 key购买 nike

我有 login.html 的模板。有一行:<h5>&copy; Your Company</h5> 。我希望从 MySQL 数据库中提取公司名称。我有compnayname.php我从 db 获取公司名称的文件。我如何将其实现到以下代码中?谢谢。

<div id="container">
<hgroup id="login-title" class="large-margin-bottom">
<h1 class="login-title-image">Company</h1>
<h5>&copy; Your Company</h5>
</hgroup>

<form method="post" action="" id="form-login">
<ul class="inputs black-input large">
<!-- The autocomplete="off" attributes is the only way to prevent webkit browsers from filling the inputs with yellow -->
<li><span class="icon-user mid-margin-right"></span><input type="text" name="login" id="login" value="" class="input-unstyled" placeholder="Login" autocomplete="off"></li>
<li><span class="icon-lock mid-margin-right"></span><input type="password" name="pass" id="pass" value="" class="input-unstyled" placeholder="Password" autocomplete="off"></li>
</ul>

<button type="submit" class="button glossy full-width huge">Login</button>
</form>
</div>

最佳答案

login.php

<div id="container">

<hgroup id="login-title" class="large-margin-bottom">
<h1 class="login-title-image">Company</h1>
<h5>&copy; <?php include("companyname.php");?></h5>


</hgroup>

<form method="post" action="" id="form-login">
<ul class="inputs black-input large">
<!-- The autocomplete="off" attributes is the only way to prevent webkit browsers from filling the inputs with yellow -->
<li><span class="icon-user mid-margin-right"></span><input type="text" name="login" id="login" value="" class="input-unstyled" placeholder="Login" autocomplete="off"></li>
<li><span class="icon-lock mid-margin-right"></span><input type="password" name="pass" id="pass" value="" class="input-unstyled" placeholder="Password" autocomplete="off"></li>
</ul>

<button type="submit" class="button glossy full-width huge">Login</button>
</form>

</div>

公司名称.php

get company_name here and echo it.

echo $company_name;

关于php - html 中来自 mysql 数据库的数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21625911/

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