我正在构建一个基于 php 的小型应用程序,它需要一个包含用户名和密码的“config.php”文件。与其要求最终用户在将应用程序上传到他们的服务器之前手动修改“config.php”,不如从设置表单中动态生成“config.php”。
基本上,我想用这个:
<form method="POST" action="?setup-config">
<fieldset>
<div class="clearfix">
<label for="username">Desired User Name</label>
<div class="input">
<input type="text" name="username" id="username">
</div>
</div>
<div class="clearfix">
<label for="password">Desired Password</label>
<div class="input">
<input type="password" name="password" id="password">
</div>
</div>
<div class="actions">
<input type="submit" value="Save Username & Password">
</div>
</fieldset>
</form>
创建“config.php”:
<?php
$username = 'entered username';
$password = 'entered password';