php表单提交到数据时间的怎么写

1.php中怎么把表单提交过来的数据写入到一个文件中表单页a.php:
<form action="b.php" method="get">
【php表单提交到数据时间的怎么写】<input name="content" type="text" />
<label>
<input type="submit" name="Submit" value="http://www.xuexi88.com/zhishi/提交">
</label>
</form>
写入页 b.php:
<?
$str=$_GET[content];
echo $str."<br>";
$fp=fopen("b.txt","w");
fwrite($fp,$str);//写入
fclose($fp);
readfile("b.txt");//读取
?>
2.php怎么把表单提交的数据放到数据库中一、php配置MySQL 1、将php安装目录下的php_mysql.dll和MySQL安装目录下的libmysql.dll文件拷贝至c:/windows/system32中; 2、配置php.ini extension=php_gd2.dll extension=php_mbstring.dll extension=php_mysql.dll extension=php_mysqli.dll 把上面四个 。
dll的最前面的;去掉 二、php表单提交至数据库的实现过程 1、login.php页面2、add.php页面 <?php include("conn.php"); ?> <?php if(isset($_POST["submit"])) { $sql = "insert into users(username, email) values('$_POST[username]', '$_POST[email]')"; mysqli_query($conn, $sql); echo "添加成功"; } ?> 3、conn.php页面 <?php $conn = new mysqli("localhost", "root", "159357"); $conn->select_db("db_test"); //mysql_query("set name 'gb2312'"); $conn->set_charset("utf8"); ?> 。
3.php表单提交内容到数据库我来给你代码:
<?php
$hostName = 'yourhost';
$userName = 'yourusername';
$passWords = 'yourpwd';
$conn = mysql_conn($hostName,$userName,$passWords);
if(!$conn){
die('Could not connect: ' . mysql_error());
}
$mysql_select_db('admin',$conn);
$sql="INSERT INTO user_zy (username, name, time,place,type, = file_get_contents($url);4、echo $html;5、?>二、用file_get_contents函数 , 以post方式获取url , 需要输入内容为1、<?php2、$url = ' = @file_get_contents($url,'',$ctx);15、?>三、用fopen打开url , 以get方式获取内容 , 需要输入内容为1、<?php2、$fp = fopen($url, 'r');3、$header = stream_get_meta_data($fp);//获取信息4、while(!feof($fp)) {5、$result .= fgets($fp, 1024);6、}7、echo "url header: {$header} ":8、echo "url body: $result";9、fclose($fp);10、?>四、用fopen打开url , 以post方式获取内容 , 需要输入内容为1、<?php2、$data = http://www.xuexi88.com/zhishi/array ('foo2' => 'bar2','foo3'=>'bar3');3、$data = http://www.xuexi88.com/zhishi/= fopen(',1024);15、echo $w;16、?>五、用fsockopen函数打开url , 以get方式获取完整的数据 , 包括header和body , 需要输入内容为1、?php2、function get_url ($url,$cookie=false)3、{4、$url = parse_url($url);5、$query = $url[path]."?".$url[query];6、echo "Query:".$query;7、$fp = fsockopen( $url[host], $url[port]?$url[port]:80 , $errno, $errstr, 30);8、if (!$fp) {9、return false;10、} else {11、$request = "GET $query HTTP/1.1\r\n";12、$request .= "Host: $url[host]\r\n";13、$request .= "Connection: Close\r\n";14、if($cookie) $request.="Cookie: $cookie\n";15、$request.="\r\n";16、fwrite($fp,$request);17、while([email protected]($fp)) {18、$result .= @fgets($fp, 1024);19、}20、fclose($fp);21、return $result;22、}23、}24、//获取url的html部分 , 去掉header25、function GetUrlHTML($url,$cookie=false)26、{27、$rowdata = http://www.xuexi88.com/zhishi/get_url($url,$cookie);28、if($rowdata)29、{30、$body= stristr($rowdata,"\r\n\r\n");31、$body=substr($body,4,strlen($body));32、return $body;33、}34、return false;35、}36、?>参考资料:php-file_get_contents 。
5.PHP中将Form表单中的数据提交到SQL数据库你好 , 
首先你要在php页面中有处理post过来的代码 , 将post过来的值写入数据库 , 如果是在当前页面处理数据 , (你这个是当前页面)那在submit里加name="tj"(name的值随你)写入数据库:if(isset($_POST['']))