php - Html 表格转换成 Php 表格

标签 php html css

因此,我试图将您放入 HTML 中的信息放入 Php 中的表中,问题是,我无法在线找到任何解决方案。我还不太了解 php。这只是我第二次提问,所以我仍然不太清楚您应该如何填写问题。无论如何,这是有问题的代码:

HTML

</head>
<body>
<form action="http://www.cs.tut.fi/cgi-bin/run~jkorpela/echo.cgi"method="post">
<div>
<label for="vnaam">Voornaam</label>
<input type="text" id="vnaam" name="vnaam" required/>
</div>
<div>
<label for="anaam">Achternaam</label>
<input type="text" id="anaam" name="anaam" required/>
</div>
<div>
<label for="tnum">Telefoon Nummer</label>
<input type="text" id="tnum" name="tnum" />
</div>
<div>
<label for="tnum">E-mail</label>
<input type="email" id="tnum" name="tnum" />
</div>
<div>
<label for="adres">Adres</label>
<input type="" id="adres" name="adres" required/> 
</div>
<div>

<label for="land">Land</label>
<select id="land" name="land">
    <option value="ned">Nederland</option>
    <option value="usa">Amerika</option>
    <option value="eng">Engeland</option>
    <option value="bel">België</option>
    <option value="fr">Frankrijk</option>
    <option value="ger">Duitsland</option>
</select>
</div>
<div class="button">
 <button type="submit">Opsturen</button>

</div>
</form>



</body>
</html>

CSS

 <style type="text/css">
 form {
 /* Just to center the form on the page */
 margin: 0 auto;
 width: 400px;
 /* To see the outline of the form */
 padding: 1em;
 border: 1px solid #CCC;
 border-radius: 1em;
}
form div + div {
margin-top: 1em;
}
label {
   /* To make sure that all labels have the same size and are properly     aligned */
    display: inline-block;
width: 90px;
text-align: right;
}
 input, textarea {
/* To make sure that all text fields have the same font settings
   By default, textareas have a monospace font */
font: 1em sans-serif;

/* To give the same size to all text field */
width: 300px;
-moz-box-sizing: border-box;
box-sizing: border-box;

/* To harmonize the look & feel of text field border */
border: 1px solid #999;
}
input:focus, textarea:focus {
/* To give a little highlight on active elements */
border-color: #000;
}
textarea {
/* To properly align multiline text fields with their labels */
vertical-align: top;

/* To give enough room to type some text */
height: 5em;

/* To allow users to resize any textarea vertically
   It does not work on all browsers */
resize: vertical;
}
.button {
/* To position the buttons to the same position of the text fields */
padding-left: 90px; /* same size as the label elements */
}
button {
/* This extra margin represent roughly the same space as the space
   between the labels and their text fields */
margin-left: .5em;
}

</style>

最佳答案

 <form method='POST' action='formhandler.php'>
    <input type='text' name='name' value='john'>
    <input type='text' name='address' value='32 flowers street'>
    <input type='text' name='email' value='john@example.com'>
 </form>

像这样的典型表单将由浏览器传送到 php 文件 formhandler.php

然后你在你的formhandler.php文件中处理它

formhandler.php

$name = isset($_POST['name']) ? $_POST['name'] : "";
$address= isset($_POST['address']) ? $_POST['address'] : "";
$email= isset($_POST['email']) ? $_POST['email'] : "";
echo $name; //john
echo $address; //32 flowers street
echo $email; //john@example.com

现在您有了表单数据。随心所欲地使用它,将它们存储在数据库中,为用户构建另一个 html 响应文件,或者做任何你想用它们做的事。

比如我们要将数据反馈给用户。

echo "We have successfully received your inputs as <br>
<table>
    <tbody>
       <tr><td>name</td><td>$name</td></tr>
       <tr><td>address</td><td>$address</td></tr>
       <tr><td>email</td><td>$email</td></tr>
    </tbody>
</table>";

注意:在现实生活中你需要validate任何输入都会首先进入您的 php 文件。

关于php - Html 表格转换成 Php 表格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39451815/

相关文章:

php - MySQL - null = 0 的问题

php - 从 MySQL DB 列中选择 JSON 数据并显示

html - 打开新标签页阅读 PDF 文件

javascript - 正则表达式 - 仅第一个字符检查非字母字符

html - 来自 StringBuilder 的 Bootstrap 布局问题

php - 实体关系

php - MySQL 事务 - 更新 2 个表

html - 如何将鼠标悬停在 span 上以显示 div?

jquery - 通过jQuery获取id+附加字符串激活CSS3过渡

html - 如何使字母像在线框中那样显示?