phpがプロデュースしたBBS超定番
リリース: 2016-07-25 08:48:36
php 制作の BBS 超古典 (全文はこちら) http://115.com/lb/5lbcqol0flze
- $dsn = "mysql:host=localhost;dbname=データベース名";
- $dbh = 新しい PDO($dsn, 'ユーザー名', 'パスワード', array(PDO::ATTR_PERSISTENT = > true));
- $dbh -> query("SET NAMES 'utf8'; ");
- $id=$_POST['id'];
- $username = $_SESSION['username']; /返信した人に関する情報を取得します
- $sql = "select * from user where username= '$username'";
- $result = mysql_query($sql);
- $row = mysql_fetch_array($result);
- $row[ 'score']=$row['score']+2;
- mysql_query("ユーザー設定スコアの更新 = '".$row['score']."' where username ='".$row['username'] ."'");
-
-
- $content = $_POST['content'];//返信に関する情報を取得します
- //$email = $row['email'];
- $date = date("Y-m-d H : i:s");
-
- $date=date("y-m-d H:i");
- date_default_timezone_set("アジア/上海");
- $time = date('Y-m-d H:m:s');
- $ y =date("Y",strtotime($time));
- $m=date("m",strtotime($time));
- $d=date("d",strtotime($time));
- $ h=date("H",strtotime($time));
- $w=date("w",strtotime($time));
- //$weekNumber=intval(date('W'));
- / /$url = "http://api.map.baidu.com/geocoder?location={$weidu},{$jingdu}&output=json";
- //$json = json_decode(file_get_contents($url), TRUE );
- //$a=file_get_contents($url);
- //$province = $json['result']['addressComponent']['province'];
- //$city = $json['result ' ]['addressComponent']['city'];
- $sql= テーブル名 (記事 ID、コンテンツ、名前、時刻) の値 ('$id', '$content', '$username', now ())";
- //$result=mysql_query($sql);
- if ($dbh ->query($sql)) {
- header("Content-Type:Application/json");
- $arr = array('status' => 'ok');
- echo json_encode($arr);
- }
- ?>
-
コードをコピー
|
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
著者別の最新記事
-
2024-10-22 09:46:29
-
2024-10-13 13:53:41
-
2024-10-12 12:15:51
-
2024-10-11 22:47:31
-
2024-10-11 19:36:51
-
2024-10-11 15:50:41
-
2024-10-11 15:07:41
-
2024-10-11 14:21:21
-
2024-10-11 12:59:11
-
2024-10-11 12:17:31