php 如何把表格的数据插入到MYSQL数据库当中。

php 如何把表格的数据插入到MYSQL数据库当中。,第1张

可以通过form提交php程序然后处理。

<form action="程序地址" method="post">

<table>

table里的内容不变

</table>

</form>

提交过去后的内容都在一个数组$_POST当中,怎么处理就看你自己的需要了

form表单demo:taskhtml

<fieldset id="setFiled">

<legend>发布任务</legend>

<form action="registrphp" method="post" id="steForm">

<label>任务类型:</label><br>

<input type="text" name="type"  id="taskType" placeholder="请选择任务类型"/><br>

<label>酬&nbsp;&nbsp;金:</label><br>

<input type="number" name="money" id="forMoney" min="1" max="1000"/><label>元</label><br>

<label>截止时间:</label><br>

<input type="datetime" name="time" id="timeSubmit"/><span data-year="" data-month="" data-date="" id="showDate"></span><br>

<label>详细描述:</label><br>

<textarea maxlength="512" name="textAray" id="msgArea"></textarea><br>

<input type="submit" name="subMit" id="forSub" value="点击发布" />

</form>

扩展资料

php接收POST数据的三种方式

1、$_POST 方式接受数据

$_POST 方式是由通过>

注:只能接收Content-Type:application/x->

2、GLOBLES[‘>

如果访问原始POST数据不是php能够识别的文档类型,比如:text/xml 或者soap等等,可以用$GLOBLES[‘>

注:$>

3、file_get_contents(“php://input”);

如果访问原始POST数据,更好的方法是使用file_get_content(“php://input”);对于未指定Content-Type的POST数据,可以使用该方法读取POST原始数据,包括二进制流也可以和$>

注:php://input不能用于 enctype=”multipart/form-data”

例如:$postStr = file_get_contents("php://input"); //获取POST数据

数组吧,直接把数组转字符串啊

implode() 函数返回由数组元素组合成的字符串。(适合一维数组)

$arr = array('Hello', 'World', 'I', 'love', 'Shanghai');

1 echo implode(" ",$arr);//加空格

the result : Hello World I love Shanghai

2 echo implode(",",$arr);//加逗号

the result : Hello,World,I,love,Shanghai

转换数组为字符串后插入数据库就可以了。

用 php Win32 OLE

##Using OLE;

read('Book1xls');

// print number of rows, columns and sheets

echo "Number of sheets: " sizeof($excel->sheets) "\n";

for ($x=0; $xsheets); $x++) {

echo "Number of rows in sheet " ($x+1) ": " $excel->sheets[$x]["numRows"] "\n";

echo "Number of columns in sheet " ($x+1) ": " $excel->sheets[$x]["numCols"] "\n";

input的name用数组,比如:

<tr>

<td><input type="text" name="name1[]"></td>

<td><input type="text" name="name2[]"></td>

</tr>

<tr>

<td><input type="text" name="name1[]"></td>

<td><input type="text" name="name2[]"></td>

</tr>

<tr>

<td><input type="text" name="name1[]"></td>

<td><input type="text" name="name2[]"></td>

</tr>

提交后$_POST['name1']、$_POST['name2']都会以数组的方式储存着3行tr的每个值,通过foreach可以把它们逐行添加进数据表

这是我以前写的较简单的,

<php

header('Content-type: text/html; charset=utf-8');

header("Content-type:application/vndms-excel;charset=UTF-8");

header("Content-Disposition:filename=testxls");

$conn = mysql_connect("localhost","用户名","密码") or die("不能连接数据库");

mysql_select_db("数据库名", $conn);

mysql_query("set names 'UTF-8'");

$sql="这里是SQL语句";

$result=mysql_query($sql);

while($row=mysql_fetch_array($result)){

echo $row[0]"\t";echo $row[1]"\t\n";

//这里的\t是下一个数据,\t\n是换行

}

>

你直接套用这个格式,然后将参数什么的填进去,还有就是SQL语句写一下,然后输出的内容格式换行什么的,你自己注意下,然后执行文件,就会自动提示你保存了

以上就是关于php 如何把表格的数据插入到MYSQL数据库当中。全部的内容,包括:php 如何把表格的数据插入到MYSQL数据库当中。、php 接收到之后post数据写入数据库、php如何写入数据库等相关内容解答,如果想了解更多相关内容,可以关注我们,你们的支持是我们更新的动力!

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9851237.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-02
下一篇 2023-05-02

发表评论

登录后才能评论

评论列表(0条)

保存