チェンジセット 94: trunk/install/php/accountregist.php
- コミット日時:
- 2010/02/28 22:28:26 (15 年前)
- ファイル:
凡例:
- 変更無し
- 追加
- 削除
- 更新
- コピー
- 移動
trunk/install/php/accountregist.php
r70 r94 58 58 if ($username != ""){ 59 59 $query = " 60 SELECT memberid ,userclass,name,passwd160 SELECT count(memberid) 61 61 FROM foltia_envpolicy 62 WHERE foltia_envpolicy.name = '$username'62 WHERE foltia_envpolicy.name = ? 63 63 "; 64 $isaccountexist = m_query($con, $query, "DBクエリに失敗しました"); 65 $isaccountexistncount = pg_num_rows($isaccountexist); 64 // $isaccountexist = m_query($con, $query, "DBクエリに失敗しました"); 65 $isaccountexist = sql_query($con, $query, "DBクエリに失敗しました",array($username)); 66 67 $isaccountexistncount = $isaccountexist->fetchColumn(0); 66 68 67 69 if ($isaccountexistncount == 0){ … … 85 87 "; 86 88 $rs = m_query($con, $query, "DBクエリに失敗しました"); 87 $max rows = pg_num_rows($rs);88 if ($max rows == 0){89 $nextcno = 1;89 $maxid = $rs->fetchColumn(0); 90 if ($maxid) { 91 $nextcno = $maxid + 1; 90 92 }else{ 91 $rowdata = pg_fetch_row($rs, 0); 92 $nextcno = $rowdata[0]; 93 $nextcno++ ; 93 $nextcno = 1; 94 94 } 95 95 … … 110 110 $query = " 111 111 insert into foltia_envpolicy 112 values ( '$nextcno','2','$username','$userpasswd',now(),'$remotehost')";112 values ( ?,'2',?,?,now(),?)"; 113 113 //print "$query <br>\n"; 114 $rs = m_query($con, $query, "DBクエリに失敗しました"); 114 // $rs = m_query($con, $query, "DBクエリに失敗しました"); 115 $rs = sql_query($con, $query, "DBクエリに失敗しました",array($nextcno,$username,$userpasswd,$remotehost)); 115 116 116 117 print "次のアカウントを登録しました。<br>