我必须使用Web程序和本地数据库(PhpMyAdmin)创建表单PHP,但我不知道如何创建多个字段,所以我搜索一些代码,我发现了这个代码,我不知道如何从这个创建列表,请有人帮助我我有7天了。
我使用fpdf库制作pdf,但如果你建议其他,我真的很感激它link fpdf
我需要显示名称格式这个例子:
1.名称/ID. 122443
- name /Id.1223
这是我使用的代码
<?php
//Database connection file
include('connection.php');
if(isset($_POST['submit']))
{
// Counting No fo skilss
$count = count($_POST["skill"]);
//Getting post values
$skill=$_POST["skill"];
if($count > 1)
{
for($i=0; $i<$count; $i++)
{
if(trim($_POST["skill"][$i] != ''))
{
$sql =mysqli_query($conn,"INSERT INTO tblskills(skill) VALUES('$skill[$i]')");
}
}
echo "<script>alert('Skills inserted successfully');</script>";
}
else
{
echo "<script>alert('Please enter skill');</script>";
}
}
?>
<html>
<head>
<title>PHPGurukul Programmin Blog | Dynamically Add or Remove input fields in PHP with JQuery</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" />
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.0/jquery.min.js"></script>
</head>
<body>
<div class="container">
<h2 align="center">Dynamically Add or Remove input fields in PHP with JQuery</h2><br />
<div class="form-group">
<form name="add_name" id="add_name" method="post">
<div class="table-responsive">
<table class="table table-bordered" id="dynamic_field">
<tr>
<td><input type="text" name="skill[]" placeholder="Enter your Skill" class="form-control name_list" /></td>
<td><button type="button" name="add" id="add" class="btn btn-success">Add More</button></td>
</tr>
</table>
<input type="submit" name="submit" id="submit" class="btn btn-info" value="Submit" />
</div>
</form>
</div>
</div>
</body>
<script>
$(document).ready(function(){
var i=1;
$('#add').click(function(){
i++;
$('#dynamic_field').append('<tr id="row'+i+'"><td><input type="text" name="skill[]" placeholder="Enter your Skill" class="form-control name_list" /></td><td><button type="button" name="remove" id="'+i+'" class="btn btn-danger btn_remove">X</button></td></tr>');
});
$(document).on('click', '.btn_remove', function(){
var button_id = $(this).attr("id");
$('#row'+button_id+'').remove();
});
});
</script>
</html>
字符串
connection.php
<?php
$conn = mysqli_connect("localhost","root","","test");
?>
型
将数据库命名为“test”,这是用于生成表
CREATE TABLE `tblskills` ( `id` int(11) NOT NULL `skill` varchar(250) NOT NULL) ENGINE=MyISAM DEFAULT CHARSET=latin1;
型
我希望这可以使pdf文件可以显示列表名称,例如:
1.name www.example.com/id.1992
2.name www.example.com/id.1223
1条答案
按热度按时间nmpmafwu1#
我觉得这个库更好更简单https://github.com/dompdf/dompdf
下面是一个例子https://gist.github.com/daveh/88ff8c5e2f99f0a11e9c7ef8e16c3888的要点
您可以设计列表在模板中的显示方式。