私は自分のデータベースのカラムラウンドから「ラウンド」の価値を得ようとしています。だから、私は各議論/投稿のフィールドの数である値を得たいと思う。値/番号に基づいて、別のものを表示することになっています。私はおそらく、その議論/投稿のdbフィールドの値が4であっても、それはNULLと言う価値を得るでしょう。これは議論だけではありませんが、これはすべてに起こります。列内のフィールドの実際の値を取得し、$ roundsという変数に代入するにはどうすればよいですか。この変数は、その議論だけでなく、各議論の価値を持つ必要があります。カラムから値を取得してもnullを返しますか?
<?php
$servername = "";
$username = "";
$password = "";
$dbname = "";
$con = new mysqli($servername, $username, $password, $dbname);
if($con->connect_error)
{
die("Connection failed: " . $con->connect_error);
}
else
{
$sql = "SELECT rounds FROM vf_Discussion";
$result = $con->query($sql);
$allRounds = $result->fetch_row();
$rounds = $allRounds[0];
var_dump($rounds);
}
mysqli_close($con);
$rounds1 = '<h2 class="CommentHeading">Round 1 (Pro)</h2> <br> <h2 class="CommentHeading">Round 1 (Con) </h2>';
$rounds2 = '<h2 class="CommentHeading">Round 2 (Pro)</h2> <br> <h2 class="CommentHeading">Round 2 (Con)</h2>';
$rounds3 = '<h2 class="CommentHeading">Round 3 (Pro)</h2> <br> <h2 class="CommentHeading">Round 3 (Con)</h2>';
$rounds4 = '<h2 class="CommentHeading">Round 4 (Pro)</h2> <br> <h2 class="CommentHeading">Round 4 (Con)</h2>';
$rounds5 = '<h2 class="CommentHeading">Round 5 (Pro)</h2> <br> <h2 class="CommentHeading">Round 5 (Con)</h2>';
foreach($allRounds as $rounds)
{
if($rounds == 1)
{
echo $rounds1;
foreach($Sender->Data('Answers') as $Row)
{
$Sender->EventArguments['Comment'] = $Row;
WriteComment($Row, $Sender, Gdn::Session(), 0);
}
}
if($rounds == 2)
{
echo $rounds1;
echo $rounds2;
foreach($Sender->Data('Answers') as $Row)
{
$Sender->EventArguments['Comment'] = $Row;
WriteComment($Row, $Sender, Gdn::Session(), 0);
}
}
if($rounds == 3)
{
echo $rounds1;
echo $rounds2;
echo $rounds3;
foreach($Sender->Data('Answers') as $Row)
{
$Sender->EventArguments['Comment'] = $Row;
WriteComment($Row, $Sender, Gdn::Session(), 0);
}
}
if($rounds == 4)
{
echo $rounds1;
echo $rounds2;
echo $rounds3;
echo $rounds4;
foreach($Sender->Data('Answers') as $Row)
{
$Sender->EventArguments['Comment'] = $Row;
WriteComment($Row, $Sender, Gdn::Session(), 0);
}
}
if($rounds == 5)
{
echo $rounds1;
echo $rounds2;
echo $rounds3;
echo $rounds4;
echo $rounds5;
foreach($Sender->Data('Answers') as $Row)
{
$Sender->EventArguments['Comment'] = $Row;
WriteComment($Row, $Sender, Gdn::Session(), 0);
}
}
}
?>
わからないあなたは」それらのすべてを使用している理由。次のようなよりシンプルなコードを使用することをお勧めします:$ result = mysql_query( "SELECT rounds from vf_Discussion"); while($ row = mysql_fetch_array($ result)) { echo $ row ['column']; .... } – mele
@mele、まだ動作しません。 – julereca