PHPで動作していないがあるchapter_subscriptionのtable.Inのchapter_subscriptionテーブルから入力されたユーザへの10章の割り当てを表示しているユーザ情報が別のものを表示しているユーザーの詳細を入力した後に1がある。すなわちドロップダウンiは2つのデータベース・テーブルを表示していますここ
- チャプター番号フィールド
- 開始日
- 終了日
は、私の目的は、ユーザーが許可されるように、終了日にオプションをドロップダウン作成することですドロップダウンから選択することができます。しかし、私の問題は、私はオプションタグを使用しています。私はそれが予期しないloop.Pleaseこのエラーを解決するのを助けることができます表示された各終了日のドロップダウンを表示する。私はPHPの初心者です。事前におねがいします。
<?php
include('db.php');
$userName=mysql_real_escape_string($_POST['userName']);
$userEmail=mysql_real_escape_string($_POST['userEmail']);
$userPassword=mysql_real_escape_string($_POST['userPassword']);
$expiry_date1=mysql_real_escape_string($_POST['expiry_date']);
$expiry_date=date("Y-m-d" ,strtotime($expiry_date1));
$end_date1=mysql_real_escape_string($_POST['end_date']);
$end_date=date("Y-m-d",strtotime($end_date1));
$regDate = date("Y-m-d");
function generateCode($characters)
{
$possible = '[email protected]#$%^&*';
$code = '';
$i = 0;
while ($i < $characters) {
$code .= substr($possible, mt_rand(0, strlen($possible)-1), 1);
$i++;
}
return $code;
}
$registration_key=generateCode(10);
$str="insert into coeds_user(userName,userEmail,userPassword,regDate,expiry_date,registration_key) values('$userName','$userEmail','$userPassword','$regDate','$expiry_date','$registration_key')";
$query=mysql_query($str);
$userid=mysql_insert_id();
if($query)
{
$display="Success";
}
else
{
$display= "Failed";
}
$string="select * from coeds_user where userId=$userid";
$query2=mysql_query($string);
$display.="<table border='1' align='center'>";
$display.="<tr><th>UserName</th><th>UserEmail</th><th>UserPassword</th><th>RegDate</th><th>ExpiryDate</th><th>RegistrationKey</th><th colspan='3'>Action</th></tr>";
while($result=mysql_fetch_array($query2))
{
$display.="<tr>";
$display.="<td>".$result['userName']."</td>";
$display.="<td>".$result['userEmail']."</td>";
$display.="<td>".$result['userPassword']."</td>";
$display.="<td>".$result['regDate']."</td>";
$display.="<td>".$result['expiry_date']."</td>";
$display.="<td>".$result['registration_key']."</td>";
$display.="<td><a id='colour' class='tooltip' title='Edit' href='user_update.php?user_Id=".$result['userId']."'><img id='image' src='./images/small.gif'/></a></td>";
$display.="<td><a id='colour' class='tooltip' data-toggle='tooltip' title='Delete' href='user_delete.php?user_Id=".$result['userId']." '><img id='image' src='./images/trash.png'/></a></td>";
$display.="</table>";
$end_date1 = date('Y-m-d', strtotime("+1 months"));
$end_date2 = date('Y-m-d', strtotime("+3 months"));
$end_date3 = date('Y-m-d', strtotime("+6 months"));
$end_date4 = date('Y-m-d', strtotime("+9 months"));
$end_date5 = date('Y-m-d', strtotime("+12 months"));
$page="";
$str="select chapter_no from chapter_details ";
$query7=mysql_query($str);
$count=mysql_num_rows($query7);
for($i=0;$i<$count;$i++)
{
$chap_lic=generateCode(50);
$chapter_no=mysql_result($query7,$i,'chapter_no');
$start_date=date('Y-m-d');
$expiry_date=mysql_real_escape_string($_POST['end_date']);
$end_date=date("Y-m-d" ,strtotime("+3 months"));
/*$end_date1=mysql_real_escape_string($_POST['end_date']);
$end_date=date("Y-m-d",strtotime($end_date1));*/
$s="insert into chapter_subscriptions (userId,chapter_no,start_date,end_date) values($userid,$chapter_no,'$start_date','$end_date')";
$end_date=date("Y-m-d" ,strtotime("+3 months"));
$query8=mysql_query($s);
}
$strings="select * from chapter_subscriptions where userId=$userid";
$query9=mysql_query($strings);
$display.="<table border='1' align='center'>";
$display.="<tr><th>ChapterNumber</th><th>StartDate</th><th>EndDate</th><th colspan='2'>Action</th></tr>";
while($result=mysql_fetch_array($query9))
{
$display.="<tr>";
$display.="<td>".$result['chapter_no']."</td>";
$display.="<td>".$result['start_date']."</td>";
$display.="<tr><select>".$result['end_date'].
for($i=0;$i<5;$i++)
{
$display.="<td><option value=echo $end_date1;>echo $end_date1;</option></td>";
$display.="<td><option value=echo $end_date2;>echo $end_date2;</option></td>";
$display.="<td><option value=echo $end_date3;>echo $end_date3;</option></td>";
$display.="<td><option value=echo $end_date4;>echo $end_date4;</option></td>";
$display.="<td><option value=echo $end_date5;>echo $end_date5;</option></td>";
}
$display.="</select></tr>"
$display.="<td><a id='colour' class='tooltip' title='Edit' href='chapter_subscription_update.php?user_Id=".$result['userId']."'><img id='image' src='./images/small.gif'/></a></td>";
$display.="<td><a id='colour' class='tooltip' data-toggle='tooltip' title='Delete' href='chapter_subscription_delete.php?user_Id=".$result['userId']." '><img id='image' src='./images/trash.png'/></a></td>";
$display.="</tr>";
}
$display.="</table>";
?>
**は非推奨 'mysql_ *' APIを使用して**を停止する必要があります。私は修正SQLクエリ – Jens
チェックを使用しますが、今、それはライン227 – Jens
を実行した後にエラーのmysqli_の* 'や' PDO' – Vradhit