1 <?php
2 date_default_timezone_set('PRC');
3 if($_POST[ok])
4 {
5 //echo "记录";
6 //echo "here";
7 $link_id=mysql_connect("127.0.0.1","root","yc9413") or die("failed to connect!");
8 if($link_id)
9 {
10 //echo "success to connect<br />";
11 //
12 mysql_select_db("_blog");
13 $query_test="select *from _blog_";
14 $result_q=mysql_query($query_test);
15 $row=mysql_fetch_array($result_q);
16
17 //echo $row[txt];
18 //echo "<br />";
19
20 $sql="insert into _blog_ values('".$_POST[newtxt]."','".date('Y-m-d H:i:s',time())."')";
21 $result=mysql_query($sql);
22 if($result)
23 {
24 echo '<html><head><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /><meta name="viewport" content="width=device-width, initial-scale=1" /><meta http-equiv="Content-Type" charset="UTF-8" /><meta name="google" content="notranslate" /><title>LeMon | 落星</title><meta name="keywords" content="blog,素材,旅行,电影" /><meta name="description" content="无话和不说,我的两大优点.." /><link rel="stylesheet" href="_css/_index_style.css" /><script type="text/javascript" src="../_js/jquery.js"></script><script type="text/javascript" src="_js/jquery.js"></script><script type="text/javascript" src="_js/_index.js"></script><style></style></head><body class="first_page" id="body_page"><div class="show_pan" id="sp"><h1 id="h01" >Hello LeMon</h1><div id="nt" class="new_txt"><div id="it" class="new_input_txt"><form method="post" action="index.php"><textarea class="new_stuff" id="ns" name="newtxt"></textarea><input type=submit name=ok value="提交" id="put_new_txt" /></form></div></div></div></body></html>';
25
26 }else
27 {
28 echo "failed to insert";
29 mysql_close($link_id);
30 }
31
32
33 }
34
35 }else
36 {
37 ?>
38 <html>
39 <head>
40 <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
41 <meta name="viewport" content="width=device-width, initial-scale=1" />
42 <meta http-equiv="Content-Type" charset="UTF-8" />
43 <meta name="google" content="notranslate" />
44 <title>LeMon | 落星</title>
45 <meta name="keywords" content="blog,素材,旅行,电影" />
46 <meta name="description" content="无话和不说,我的两大优点.." />
47 <link rel="stylesheet" href="_css/_index_style.css" />
48 <script type="text/javascript" src="../_js/jquery.js"></script>
49 <script type="text/javascript" src="_js/jquery.js"></script>
50 <script type="text/javascript" src="_js/_index.js"></script>
51 <style>
52
53 </style>
54 </head>
55 <body class="first_page" id="body_page">
56 <div class="show_pan" id="sp">
57 <h1 id="h01" >Hello LeMon</h1>
58 <div id="nt" class="new_txt">
59 <div id="it" class="new_input_txt">
60 <form method="post" action="index.php">
61 <textarea class="new_stuff" id="ns" name="newtxt">
62
63 </textarea>
64 <input type=submit name=ok value="提交" id="put_new_txt" />
65 </form>
66 </div>
67 </div>
68 </div>
69 </body>
70 </html>
71 <?
72 }
73
74
75 ?>
76