Getting the same data for all the records for editing and updating a record in php2019 Community Moderator ElectionDetecting request type in PHP (GET, POST, PUT or DELETE)How do I get PHP errors to display?How to get the client IP address in PHPReference — What does this symbol mean in PHP?Get the full URL in PHPselect only text input names from POSTAdding checkbox values with different input namesSql special character to Html charactersHow to insert form data using MySqli/PHP?mySqli php - User input multiple choice checkboxes into 1 record

Isn't the word "experience" wrongly used in this context?

How are passwords stolen from companies if they only store hashes?

Is this Pascal's Matrix?

Did Nintendo change its mind about 68000 SNES?

Hackerrank All Women's Codesprint 2019: Name the Product

Are hand made posters acceptable in Academia?

How can an organ that provides biological immortality be unable to regenerate?

Why are there no stars visible in cislunar space?

Do people actually use the word "kaputt" in conversation?

I got the following comment from a reputed math journal. What does it mean?

Asserting that Atheism and Theism are both faith based positions

Is VPN a layer 3 concept?

Have any astronauts/cosmonauts died in space?

Would this string work as string?

Should a narrator ever describe things based on a characters view instead of fact?

Friend wants my recommendation but I don't want to give it to him

is this saw blade faulty?

Output visual diagram of picture

How to find the largest number(s) in a list of elements, possibly non-unique?

Writing in a Christian voice

Why is indicated airspeed rather than ground speed used during the takeoff roll?

Exposing a company lying about themselves in a tightly knit industry: Is my career at risk on the long run?

What is the difference between something being completely legal and being completely decriminalized?

What are the consequences of changing the number of hours in a day?



Getting the same data for all the records for editing and updating a record in php



2019 Community Moderator ElectionDetecting request type in PHP (GET, POST, PUT or DELETE)How do I get PHP errors to display?How to get the client IP address in PHPReference — What does this symbol mean in PHP?Get the full URL in PHPselect only text input names from POSTAdding checkbox values with different input namesSql special character to Html charactersHow to insert form data using MySqli/PHP?mySqli php - User input multiple choice checkboxes into 1 record










-2















I am having two different database tables questions and choices where i am inserting questions in one table and multiple choices in another table where questions table id is foreign key in choices table.



Questions:



Questions_number Text
1 What is HTML?
2 What is PHP?


Choices:



id question_number is_correct text
1 1 1 markup
2 1 0 Hyext
3 1 0 Hyper text markup language
4 2 0 hsdfd
5 2 0 frfwer
6 2 1 Hypertext Preprocessor


If i am trying to edit question number 1 then i need to fetch all the details of questions,Choices and correct option as well.But when i am trying to edit the record for choices as well i am getting the same data which i am getting for question.



HTML:



<?php session_start();
include 'includes/db.php';
$id = (int)$_GET['id'];
$sql = "SELECT * FROM questions q WHERE q.question_number = $id ";
$oppointArr =array();
$result = mysqli_query($mysqli,$sql);
if (mysqli_num_rows($result) > 0)
while($row = mysqli_fetch_array($result))

$oppointArr = $row;
echo "Text: " . $row["text"]. "<br>";

else
echo "0 results";

?>
<form class="form-horizontal" action="updatequestions.php" method="post" role="form">
<?php if(isset($msg)) ?>
<div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
<?php ?>
<input type='hidden' value='<?=$id;?>' name='question_number'>
<h2>Edit A Question</h1>

<div class="form-group">
<label for="questionno" class="col-sm-2 control-label">Question Number</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
name="question_number" id="question_number" readonly>
</div>
</div>
<div class="form-group">
<label for="question" class="col-sm-2 control-label">Question</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
</div>
</div>

<input type='hidden' value='<?=$id;?>' name='id'>
<h2>Edit A Choice</h1>

<div class="form-group">
<label for="choice #1" class="col-sm-2 control-label">Choice #1</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice1'];?>" name="choice1" id="choice1">
</div>
</div>

<div class="form-group">
<label for="choice #2" class="col-sm-2 control-label">Choice #2</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice2'];?>" name="choice2" id="choice2">
</div>
</div>
<div class="form-group">
<label for="choice #3" class="col-sm-2 control-label">Choice #3</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice3'];?>" name="choice3" id="choice3">
</div>
</div>
<div class="form-group">
<label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['is_correct'];?>" name="is_correct" id="is_correct">
</div>
</div>
<div class="col-sm-offset-2">
<button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
<button type="cancel" class="btn btn-raised"><a href="http://localhost/quizzeradmin/admin/searchquestions.php">Cancel</a></button>
</div>
</form>


Updatequestions:



<?php
include 'includes/db.php';
if(isset($_POST['submit_user']))

$questiontext = $_POST['question_text'];
$id=$_POST['question_number'];
$correct_choice = $_POST['correct_choice'];
$choices = array();
$choices[1] = $_POST['choice1'];
$choices[2] = $_POST['choice2'];
$choices[3] = $_POST['choice3'];
$choices[4] = $_POST['choice4'];
$choices[5] = $_POST['choice5'];
$query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
foreach($choices as $choice => $value)
if($value != '')
if($correct_choice == $choice)
$is_correct = 1;
else
$is_correct = 0;

$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
continue;
else
die('Error : ('.$mysqli->errno . ') '. $mysqli->error);



$msg = 'Question has been added';


?>


If i try to update the record all the fields are updating with the same data.










share|improve this question



















  • 2





    Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

    – Dharman
    Mar 7 at 19:08















-2















I am having two different database tables questions and choices where i am inserting questions in one table and multiple choices in another table where questions table id is foreign key in choices table.



Questions:



Questions_number Text
1 What is HTML?
2 What is PHP?


Choices:



id question_number is_correct text
1 1 1 markup
2 1 0 Hyext
3 1 0 Hyper text markup language
4 2 0 hsdfd
5 2 0 frfwer
6 2 1 Hypertext Preprocessor


If i am trying to edit question number 1 then i need to fetch all the details of questions,Choices and correct option as well.But when i am trying to edit the record for choices as well i am getting the same data which i am getting for question.



HTML:



<?php session_start();
include 'includes/db.php';
$id = (int)$_GET['id'];
$sql = "SELECT * FROM questions q WHERE q.question_number = $id ";
$oppointArr =array();
$result = mysqli_query($mysqli,$sql);
if (mysqli_num_rows($result) > 0)
while($row = mysqli_fetch_array($result))

$oppointArr = $row;
echo "Text: " . $row["text"]. "<br>";

else
echo "0 results";

?>
<form class="form-horizontal" action="updatequestions.php" method="post" role="form">
<?php if(isset($msg)) ?>
<div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
<?php ?>
<input type='hidden' value='<?=$id;?>' name='question_number'>
<h2>Edit A Question</h1>

<div class="form-group">
<label for="questionno" class="col-sm-2 control-label">Question Number</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
name="question_number" id="question_number" readonly>
</div>
</div>
<div class="form-group">
<label for="question" class="col-sm-2 control-label">Question</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
</div>
</div>

<input type='hidden' value='<?=$id;?>' name='id'>
<h2>Edit A Choice</h1>

<div class="form-group">
<label for="choice #1" class="col-sm-2 control-label">Choice #1</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice1'];?>" name="choice1" id="choice1">
</div>
</div>

<div class="form-group">
<label for="choice #2" class="col-sm-2 control-label">Choice #2</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice2'];?>" name="choice2" id="choice2">
</div>
</div>
<div class="form-group">
<label for="choice #3" class="col-sm-2 control-label">Choice #3</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice3'];?>" name="choice3" id="choice3">
</div>
</div>
<div class="form-group">
<label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['is_correct'];?>" name="is_correct" id="is_correct">
</div>
</div>
<div class="col-sm-offset-2">
<button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
<button type="cancel" class="btn btn-raised"><a href="http://localhost/quizzeradmin/admin/searchquestions.php">Cancel</a></button>
</div>
</form>


Updatequestions:



<?php
include 'includes/db.php';
if(isset($_POST['submit_user']))

$questiontext = $_POST['question_text'];
$id=$_POST['question_number'];
$correct_choice = $_POST['correct_choice'];
$choices = array();
$choices[1] = $_POST['choice1'];
$choices[2] = $_POST['choice2'];
$choices[3] = $_POST['choice3'];
$choices[4] = $_POST['choice4'];
$choices[5] = $_POST['choice5'];
$query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
foreach($choices as $choice => $value)
if($value != '')
if($correct_choice == $choice)
$is_correct = 1;
else
$is_correct = 0;

$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
continue;
else
die('Error : ('.$mysqli->errno . ') '. $mysqli->error);



$msg = 'Question has been added';


?>


If i try to update the record all the fields are updating with the same data.










share|improve this question



















  • 2





    Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

    – Dharman
    Mar 7 at 19:08













-2












-2








-2








I am having two different database tables questions and choices where i am inserting questions in one table and multiple choices in another table where questions table id is foreign key in choices table.



Questions:



Questions_number Text
1 What is HTML?
2 What is PHP?


Choices:



id question_number is_correct text
1 1 1 markup
2 1 0 Hyext
3 1 0 Hyper text markup language
4 2 0 hsdfd
5 2 0 frfwer
6 2 1 Hypertext Preprocessor


If i am trying to edit question number 1 then i need to fetch all the details of questions,Choices and correct option as well.But when i am trying to edit the record for choices as well i am getting the same data which i am getting for question.



HTML:



<?php session_start();
include 'includes/db.php';
$id = (int)$_GET['id'];
$sql = "SELECT * FROM questions q WHERE q.question_number = $id ";
$oppointArr =array();
$result = mysqli_query($mysqli,$sql);
if (mysqli_num_rows($result) > 0)
while($row = mysqli_fetch_array($result))

$oppointArr = $row;
echo "Text: " . $row["text"]. "<br>";

else
echo "0 results";

?>
<form class="form-horizontal" action="updatequestions.php" method="post" role="form">
<?php if(isset($msg)) ?>
<div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
<?php ?>
<input type='hidden' value='<?=$id;?>' name='question_number'>
<h2>Edit A Question</h1>

<div class="form-group">
<label for="questionno" class="col-sm-2 control-label">Question Number</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
name="question_number" id="question_number" readonly>
</div>
</div>
<div class="form-group">
<label for="question" class="col-sm-2 control-label">Question</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
</div>
</div>

<input type='hidden' value='<?=$id;?>' name='id'>
<h2>Edit A Choice</h1>

<div class="form-group">
<label for="choice #1" class="col-sm-2 control-label">Choice #1</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice1'];?>" name="choice1" id="choice1">
</div>
</div>

<div class="form-group">
<label for="choice #2" class="col-sm-2 control-label">Choice #2</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice2'];?>" name="choice2" id="choice2">
</div>
</div>
<div class="form-group">
<label for="choice #3" class="col-sm-2 control-label">Choice #3</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice3'];?>" name="choice3" id="choice3">
</div>
</div>
<div class="form-group">
<label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['is_correct'];?>" name="is_correct" id="is_correct">
</div>
</div>
<div class="col-sm-offset-2">
<button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
<button type="cancel" class="btn btn-raised"><a href="http://localhost/quizzeradmin/admin/searchquestions.php">Cancel</a></button>
</div>
</form>


Updatequestions:



<?php
include 'includes/db.php';
if(isset($_POST['submit_user']))

$questiontext = $_POST['question_text'];
$id=$_POST['question_number'];
$correct_choice = $_POST['correct_choice'];
$choices = array();
$choices[1] = $_POST['choice1'];
$choices[2] = $_POST['choice2'];
$choices[3] = $_POST['choice3'];
$choices[4] = $_POST['choice4'];
$choices[5] = $_POST['choice5'];
$query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
foreach($choices as $choice => $value)
if($value != '')
if($correct_choice == $choice)
$is_correct = 1;
else
$is_correct = 0;

$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
continue;
else
die('Error : ('.$mysqli->errno . ') '. $mysqli->error);



$msg = 'Question has been added';


?>


If i try to update the record all the fields are updating with the same data.










share|improve this question
















I am having two different database tables questions and choices where i am inserting questions in one table and multiple choices in another table where questions table id is foreign key in choices table.



Questions:



Questions_number Text
1 What is HTML?
2 What is PHP?


Choices:



id question_number is_correct text
1 1 1 markup
2 1 0 Hyext
3 1 0 Hyper text markup language
4 2 0 hsdfd
5 2 0 frfwer
6 2 1 Hypertext Preprocessor


If i am trying to edit question number 1 then i need to fetch all the details of questions,Choices and correct option as well.But when i am trying to edit the record for choices as well i am getting the same data which i am getting for question.



HTML:



<?php session_start();
include 'includes/db.php';
$id = (int)$_GET['id'];
$sql = "SELECT * FROM questions q WHERE q.question_number = $id ";
$oppointArr =array();
$result = mysqli_query($mysqli,$sql);
if (mysqli_num_rows($result) > 0)
while($row = mysqli_fetch_array($result))

$oppointArr = $row;
echo "Text: " . $row["text"]. "<br>";

else
echo "0 results";

?>
<form class="form-horizontal" action="updatequestions.php" method="post" role="form">
<?php if(isset($msg)) ?>
<div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
<?php ?>
<input type='hidden' value='<?=$id;?>' name='question_number'>
<h2>Edit A Question</h1>

<div class="form-group">
<label for="questionno" class="col-sm-2 control-label">Question Number</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
name="question_number" id="question_number" readonly>
</div>
</div>
<div class="form-group">
<label for="question" class="col-sm-2 control-label">Question</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
</div>
</div>

<input type='hidden' value='<?=$id;?>' name='id'>
<h2>Edit A Choice</h1>

<div class="form-group">
<label for="choice #1" class="col-sm-2 control-label">Choice #1</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice1'];?>" name="choice1" id="choice1">
</div>
</div>

<div class="form-group">
<label for="choice #2" class="col-sm-2 control-label">Choice #2</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice2'];?>" name="choice2" id="choice2">
</div>
</div>
<div class="form-group">
<label for="choice #3" class="col-sm-2 control-label">Choice #3</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['choice3'];?>" name="choice3" id="choice3">
</div>
</div>
<div class="form-group">
<label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
<div class="col-sm-5">
<input type="text" class="form-control" value="<?php echo $oppointArr['is_correct'];?>" name="is_correct" id="is_correct">
</div>
</div>
<div class="col-sm-offset-2">
<button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
<button type="cancel" class="btn btn-raised"><a href="http://localhost/quizzeradmin/admin/searchquestions.php">Cancel</a></button>
</div>
</form>


Updatequestions:



<?php
include 'includes/db.php';
if(isset($_POST['submit_user']))

$questiontext = $_POST['question_text'];
$id=$_POST['question_number'];
$correct_choice = $_POST['correct_choice'];
$choices = array();
$choices[1] = $_POST['choice1'];
$choices[2] = $_POST['choice2'];
$choices[3] = $_POST['choice3'];
$choices[4] = $_POST['choice4'];
$choices[5] = $_POST['choice5'];
$query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
foreach($choices as $choice => $value)
if($value != '')
if($correct_choice == $choice)
$is_correct = 1;
else
$is_correct = 0;

$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";
$insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
if($insert_row)
continue;
else
die('Error : ('.$mysqli->errno . ') '. $mysqli->error);



$msg = 'Question has been added';


?>


If i try to update the record all the fields are updating with the same data.







php mysql mysqli






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Mar 11 at 18:39









tadman

157k19179209




157k19179209










asked Mar 7 at 19:04









testertester

9010




9010







  • 2





    Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

    – Dharman
    Mar 7 at 19:08












  • 2





    Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

    – Dharman
    Mar 7 at 19:08







2




2





Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

– Dharman
Mar 7 at 19:08





Warning: You are wide open to SQL Injections and should really use parameterized prepared statements instead of manually building your queries. They are provided by PDO or by MySQLi. Never trust any kind of input, especially that which comes from the client side. Even when your queries are executed only by trusted users, you are still in risk of corrupting your data.

– Dharman
Mar 7 at 19:08












2 Answers
2






active

oldest

votes


















0














WARNING: Do not create SQL statements by concatenating the data with SQL. Use prepared statements.



As for your problem, you use the foreign key of the question to update choices. The key is not the primary key of choices and is not unique. Try using the unique primary key for your SQL.



Instead of this:



$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";


try this:



$query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE id=$choice ";


But of course you should really try to do it all over again using prepared statements instead!






share|improve this answer






























    0














    <form class="form-horizontal" action="updatequestions.php" method="post" role="form">
    <?php if(isset($msg)) ?>
    <div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
    <?php ?>
    <input type='hidden' value='<?=$id;?>' name='question_number'>
    <h2>Edit A Question</h1>

    <div class="form-group">
    <label for="questionno" class="col-sm-2 control-label">Question Number</label>
    <div class="col-sm-5">
    <input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
    name="question_number" id="question_number" readonly>
    </div>
    </div>
    <div class="form-group">
    <label for="question" class="col-sm-2 control-label">Question</label>
    <div class="col-sm-5">
    <input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
    </div>
    </div>

    <input type='hidden' value='<?=$id;?>' name='id'>
    <h2>Edit A Choice</h1>
    <?php

    $choicesql = "SELECT * FROM `choices` WHERE question_number = $id ";
    $ChoicetArr =array();
    $choiceresult = mysqli_query($mysqli,$choicesql);
    $inc=1;
    $correctAns ="";

    if (mysqli_num_rows($choiceresult) > 0)

    while($rows = mysqli_fetch_array($choiceresult))

    $ChoicetArr[] = $rows;


    ?>

    <div class="form-group">
    <label for="choice #<?php echo $inc;?>" class="col-sm-2 control-label">Choice #<?php echo $inc;?></label>
    <div class="col-sm-5">
    <input type="hidden" name="choice_id<?php echo $inc;?>" value="<?php echo $rows['id'];?>">
    <input type="text" class="form-control" value="<?php echo $rows['text'];?>" name="choice<?php echo $inc;?>" id="choice<?php echo $inc;?>">
    </div>
    </div>
    <?php

    //print_r($rows);

    if($rows['is_correct']=="1")

    $correctAns = '<input type="hidden" name="choice_id'.$inc.'" value="'.$rows['id'].'"><div class="form-group">
    <label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
    <div class="col-sm-5">
    <input type="text" class="form-control" value="'.$inc.'" name="is_correct" id="is_correct">
    </div>
    </div>';

    $inc++;



    echo $correctAns;
    ?>

    <div class="col-sm-offset-2">
    <button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
    <button type="cancel" class="btn btn-raised"><a href="searchquestions.php">Cancel</a></button>
    </div>
    </form>


    updatequestions.php



    <?php
    include 'includes/db.php';
    if(isset($_POST['submit_user']))

    $questiontext = $_POST['question_text'];
    $id=$_POST['question_number'];
    $correct_choice = $_POST['is_correct'];
    $choices = array();
    $choices[] = array("question"=>$_POST['choice1'], "answer"=>$_POST['choice_id1']);
    $choices[] = array("question"=>$_POST['choice2'], "answer"=>$_POST['choice_id2']);
    $choices[] = array("question"=>$_POST['choice3'], "answer"=>$_POST['choice_id3']);
    $choices[] = array("question"=>$_POST['choice4'], "answer"=>$_POST['choice_id4']);
    $choices[] = array("question"=>$_POST['choice5'], "answer"=>$_POST['choice_id5']);

    $query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
    $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);

    if($insert_row)

    $inc= 0;

    foreach($choices as $choice => $value)
    if(count($value)>0)
    $answerInc = $choice+1;

    if($correct_choice == $answerInc)
    $is_correct = 1;
    else
    $is_correct = 0;

    $text= $value['question'];
    $answer = $value['answer'];
    //echo "<br>".$text;
    //print_r($value);
    echo $answerInc;
    echo "<br>";

    echo $query = "UPDATE choices SET is_correct='$is_correct', text='$text' WHERE id=$answer";
    $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
    if($insert_row)
    continue;
    else
    die('Error : ('.$mysqli->errno . ') '. $mysqli->error);


    $inc++;


    $msg = 'Question has been Updated Successfully';
    header("location:searchquestions.php");
    exit;


    ?>





    share|improve this answer






















      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55051088%2fgetting-the-same-data-for-all-the-records-for-editing-and-updating-a-record-in-p%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      0














      WARNING: Do not create SQL statements by concatenating the data with SQL. Use prepared statements.



      As for your problem, you use the foreign key of the question to update choices. The key is not the primary key of choices and is not unique. Try using the unique primary key for your SQL.



      Instead of this:



      $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";


      try this:



      $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE id=$choice ";


      But of course you should really try to do it all over again using prepared statements instead!






      share|improve this answer



























        0














        WARNING: Do not create SQL statements by concatenating the data with SQL. Use prepared statements.



        As for your problem, you use the foreign key of the question to update choices. The key is not the primary key of choices and is not unique. Try using the unique primary key for your SQL.



        Instead of this:



        $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";


        try this:



        $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE id=$choice ";


        But of course you should really try to do it all over again using prepared statements instead!






        share|improve this answer

























          0












          0








          0







          WARNING: Do not create SQL statements by concatenating the data with SQL. Use prepared statements.



          As for your problem, you use the foreign key of the question to update choices. The key is not the primary key of choices and is not unique. Try using the unique primary key for your SQL.



          Instead of this:



          $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";


          try this:



          $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE id=$choice ";


          But of course you should really try to do it all over again using prepared statements instead!






          share|improve this answer













          WARNING: Do not create SQL statements by concatenating the data with SQL. Use prepared statements.



          As for your problem, you use the foreign key of the question to update choices. The key is not the primary key of choices and is not unique. Try using the unique primary key for your SQL.



          Instead of this:



          $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE question_number=$id";


          try this:



          $query = "UPDATE choices SET is_correct='$is_correct', text='$value' WHERE id=$choice ";


          But of course you should really try to do it all over again using prepared statements instead!







          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 7 at 20:05









          DharmanDharman

          5,39562556




          5,39562556























              0














              <form class="form-horizontal" action="updatequestions.php" method="post" role="form">
              <?php if(isset($msg)) ?>
              <div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
              <?php ?>
              <input type='hidden' value='<?=$id;?>' name='question_number'>
              <h2>Edit A Question</h1>

              <div class="form-group">
              <label for="questionno" class="col-sm-2 control-label">Question Number</label>
              <div class="col-sm-5">
              <input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
              name="question_number" id="question_number" readonly>
              </div>
              </div>
              <div class="form-group">
              <label for="question" class="col-sm-2 control-label">Question</label>
              <div class="col-sm-5">
              <input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
              </div>
              </div>

              <input type='hidden' value='<?=$id;?>' name='id'>
              <h2>Edit A Choice</h1>
              <?php

              $choicesql = "SELECT * FROM `choices` WHERE question_number = $id ";
              $ChoicetArr =array();
              $choiceresult = mysqli_query($mysqli,$choicesql);
              $inc=1;
              $correctAns ="";

              if (mysqli_num_rows($choiceresult) > 0)

              while($rows = mysqli_fetch_array($choiceresult))

              $ChoicetArr[] = $rows;


              ?>

              <div class="form-group">
              <label for="choice #<?php echo $inc;?>" class="col-sm-2 control-label">Choice #<?php echo $inc;?></label>
              <div class="col-sm-5">
              <input type="hidden" name="choice_id<?php echo $inc;?>" value="<?php echo $rows['id'];?>">
              <input type="text" class="form-control" value="<?php echo $rows['text'];?>" name="choice<?php echo $inc;?>" id="choice<?php echo $inc;?>">
              </div>
              </div>
              <?php

              //print_r($rows);

              if($rows['is_correct']=="1")

              $correctAns = '<input type="hidden" name="choice_id'.$inc.'" value="'.$rows['id'].'"><div class="form-group">
              <label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
              <div class="col-sm-5">
              <input type="text" class="form-control" value="'.$inc.'" name="is_correct" id="is_correct">
              </div>
              </div>';

              $inc++;



              echo $correctAns;
              ?>

              <div class="col-sm-offset-2">
              <button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
              <button type="cancel" class="btn btn-raised"><a href="searchquestions.php">Cancel</a></button>
              </div>
              </form>


              updatequestions.php



              <?php
              include 'includes/db.php';
              if(isset($_POST['submit_user']))

              $questiontext = $_POST['question_text'];
              $id=$_POST['question_number'];
              $correct_choice = $_POST['is_correct'];
              $choices = array();
              $choices[] = array("question"=>$_POST['choice1'], "answer"=>$_POST['choice_id1']);
              $choices[] = array("question"=>$_POST['choice2'], "answer"=>$_POST['choice_id2']);
              $choices[] = array("question"=>$_POST['choice3'], "answer"=>$_POST['choice_id3']);
              $choices[] = array("question"=>$_POST['choice4'], "answer"=>$_POST['choice_id4']);
              $choices[] = array("question"=>$_POST['choice5'], "answer"=>$_POST['choice_id5']);

              $query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
              $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);

              if($insert_row)

              $inc= 0;

              foreach($choices as $choice => $value)
              if(count($value)>0)
              $answerInc = $choice+1;

              if($correct_choice == $answerInc)
              $is_correct = 1;
              else
              $is_correct = 0;

              $text= $value['question'];
              $answer = $value['answer'];
              //echo "<br>".$text;
              //print_r($value);
              echo $answerInc;
              echo "<br>";

              echo $query = "UPDATE choices SET is_correct='$is_correct', text='$text' WHERE id=$answer";
              $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
              if($insert_row)
              continue;
              else
              die('Error : ('.$mysqli->errno . ') '. $mysqli->error);


              $inc++;


              $msg = 'Question has been Updated Successfully';
              header("location:searchquestions.php");
              exit;


              ?>





              share|improve this answer



























                0














                <form class="form-horizontal" action="updatequestions.php" method="post" role="form">
                <?php if(isset($msg)) ?>
                <div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
                <?php ?>
                <input type='hidden' value='<?=$id;?>' name='question_number'>
                <h2>Edit A Question</h1>

                <div class="form-group">
                <label for="questionno" class="col-sm-2 control-label">Question Number</label>
                <div class="col-sm-5">
                <input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
                name="question_number" id="question_number" readonly>
                </div>
                </div>
                <div class="form-group">
                <label for="question" class="col-sm-2 control-label">Question</label>
                <div class="col-sm-5">
                <input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
                </div>
                </div>

                <input type='hidden' value='<?=$id;?>' name='id'>
                <h2>Edit A Choice</h1>
                <?php

                $choicesql = "SELECT * FROM `choices` WHERE question_number = $id ";
                $ChoicetArr =array();
                $choiceresult = mysqli_query($mysqli,$choicesql);
                $inc=1;
                $correctAns ="";

                if (mysqli_num_rows($choiceresult) > 0)

                while($rows = mysqli_fetch_array($choiceresult))

                $ChoicetArr[] = $rows;


                ?>

                <div class="form-group">
                <label for="choice #<?php echo $inc;?>" class="col-sm-2 control-label">Choice #<?php echo $inc;?></label>
                <div class="col-sm-5">
                <input type="hidden" name="choice_id<?php echo $inc;?>" value="<?php echo $rows['id'];?>">
                <input type="text" class="form-control" value="<?php echo $rows['text'];?>" name="choice<?php echo $inc;?>" id="choice<?php echo $inc;?>">
                </div>
                </div>
                <?php

                //print_r($rows);

                if($rows['is_correct']=="1")

                $correctAns = '<input type="hidden" name="choice_id'.$inc.'" value="'.$rows['id'].'"><div class="form-group">
                <label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
                <div class="col-sm-5">
                <input type="text" class="form-control" value="'.$inc.'" name="is_correct" id="is_correct">
                </div>
                </div>';

                $inc++;



                echo $correctAns;
                ?>

                <div class="col-sm-offset-2">
                <button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
                <button type="cancel" class="btn btn-raised"><a href="searchquestions.php">Cancel</a></button>
                </div>
                </form>


                updatequestions.php



                <?php
                include 'includes/db.php';
                if(isset($_POST['submit_user']))

                $questiontext = $_POST['question_text'];
                $id=$_POST['question_number'];
                $correct_choice = $_POST['is_correct'];
                $choices = array();
                $choices[] = array("question"=>$_POST['choice1'], "answer"=>$_POST['choice_id1']);
                $choices[] = array("question"=>$_POST['choice2'], "answer"=>$_POST['choice_id2']);
                $choices[] = array("question"=>$_POST['choice3'], "answer"=>$_POST['choice_id3']);
                $choices[] = array("question"=>$_POST['choice4'], "answer"=>$_POST['choice_id4']);
                $choices[] = array("question"=>$_POST['choice5'], "answer"=>$_POST['choice_id5']);

                $query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
                $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);

                if($insert_row)

                $inc= 0;

                foreach($choices as $choice => $value)
                if(count($value)>0)
                $answerInc = $choice+1;

                if($correct_choice == $answerInc)
                $is_correct = 1;
                else
                $is_correct = 0;

                $text= $value['question'];
                $answer = $value['answer'];
                //echo "<br>".$text;
                //print_r($value);
                echo $answerInc;
                echo "<br>";

                echo $query = "UPDATE choices SET is_correct='$is_correct', text='$text' WHERE id=$answer";
                $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
                if($insert_row)
                continue;
                else
                die('Error : ('.$mysqli->errno . ') '. $mysqli->error);


                $inc++;


                $msg = 'Question has been Updated Successfully';
                header("location:searchquestions.php");
                exit;


                ?>





                share|improve this answer

























                  0












                  0








                  0







                  <form class="form-horizontal" action="updatequestions.php" method="post" role="form">
                  <?php if(isset($msg)) ?>
                  <div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
                  <?php ?>
                  <input type='hidden' value='<?=$id;?>' name='question_number'>
                  <h2>Edit A Question</h1>

                  <div class="form-group">
                  <label for="questionno" class="col-sm-2 control-label">Question Number</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
                  name="question_number" id="question_number" readonly>
                  </div>
                  </div>
                  <div class="form-group">
                  <label for="question" class="col-sm-2 control-label">Question</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
                  </div>
                  </div>

                  <input type='hidden' value='<?=$id;?>' name='id'>
                  <h2>Edit A Choice</h1>
                  <?php

                  $choicesql = "SELECT * FROM `choices` WHERE question_number = $id ";
                  $ChoicetArr =array();
                  $choiceresult = mysqli_query($mysqli,$choicesql);
                  $inc=1;
                  $correctAns ="";

                  if (mysqli_num_rows($choiceresult) > 0)

                  while($rows = mysqli_fetch_array($choiceresult))

                  $ChoicetArr[] = $rows;


                  ?>

                  <div class="form-group">
                  <label for="choice #<?php echo $inc;?>" class="col-sm-2 control-label">Choice #<?php echo $inc;?></label>
                  <div class="col-sm-5">
                  <input type="hidden" name="choice_id<?php echo $inc;?>" value="<?php echo $rows['id'];?>">
                  <input type="text" class="form-control" value="<?php echo $rows['text'];?>" name="choice<?php echo $inc;?>" id="choice<?php echo $inc;?>">
                  </div>
                  </div>
                  <?php

                  //print_r($rows);

                  if($rows['is_correct']=="1")

                  $correctAns = '<input type="hidden" name="choice_id'.$inc.'" value="'.$rows['id'].'"><div class="form-group">
                  <label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="'.$inc.'" name="is_correct" id="is_correct">
                  </div>
                  </div>';

                  $inc++;



                  echo $correctAns;
                  ?>

                  <div class="col-sm-offset-2">
                  <button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
                  <button type="cancel" class="btn btn-raised"><a href="searchquestions.php">Cancel</a></button>
                  </div>
                  </form>


                  updatequestions.php



                  <?php
                  include 'includes/db.php';
                  if(isset($_POST['submit_user']))

                  $questiontext = $_POST['question_text'];
                  $id=$_POST['question_number'];
                  $correct_choice = $_POST['is_correct'];
                  $choices = array();
                  $choices[] = array("question"=>$_POST['choice1'], "answer"=>$_POST['choice_id1']);
                  $choices[] = array("question"=>$_POST['choice2'], "answer"=>$_POST['choice_id2']);
                  $choices[] = array("question"=>$_POST['choice3'], "answer"=>$_POST['choice_id3']);
                  $choices[] = array("question"=>$_POST['choice4'], "answer"=>$_POST['choice_id4']);
                  $choices[] = array("question"=>$_POST['choice5'], "answer"=>$_POST['choice_id5']);

                  $query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
                  $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);

                  if($insert_row)

                  $inc= 0;

                  foreach($choices as $choice => $value)
                  if(count($value)>0)
                  $answerInc = $choice+1;

                  if($correct_choice == $answerInc)
                  $is_correct = 1;
                  else
                  $is_correct = 0;

                  $text= $value['question'];
                  $answer = $value['answer'];
                  //echo "<br>".$text;
                  //print_r($value);
                  echo $answerInc;
                  echo "<br>";

                  echo $query = "UPDATE choices SET is_correct='$is_correct', text='$text' WHERE id=$answer";
                  $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
                  if($insert_row)
                  continue;
                  else
                  die('Error : ('.$mysqli->errno . ') '. $mysqli->error);


                  $inc++;


                  $msg = 'Question has been Updated Successfully';
                  header("location:searchquestions.php");
                  exit;


                  ?>





                  share|improve this answer













                  <form class="form-horizontal" action="updatequestions.php" method="post" role="form">
                  <?php if(isset($msg)) ?>
                  <div class="<?php echo $msgclass; ?>" id="mydiv" style="padding:5px;"><?php echo $msg; ?></div>
                  <?php ?>
                  <input type='hidden' value='<?=$id;?>' name='question_number'>
                  <h2>Edit A Question</h1>

                  <div class="form-group">
                  <label for="questionno" class="col-sm-2 control-label">Question Number</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="<?php echo $oppointArr['question_number'];?>"
                  name="question_number" id="question_number" readonly>
                  </div>
                  </div>
                  <div class="form-group">
                  <label for="question" class="col-sm-2 control-label">Question</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="<?php echo $oppointArr['text'];?>" name="question_text" id="question_text">
                  </div>
                  </div>

                  <input type='hidden' value='<?=$id;?>' name='id'>
                  <h2>Edit A Choice</h1>
                  <?php

                  $choicesql = "SELECT * FROM `choices` WHERE question_number = $id ";
                  $ChoicetArr =array();
                  $choiceresult = mysqli_query($mysqli,$choicesql);
                  $inc=1;
                  $correctAns ="";

                  if (mysqli_num_rows($choiceresult) > 0)

                  while($rows = mysqli_fetch_array($choiceresult))

                  $ChoicetArr[] = $rows;


                  ?>

                  <div class="form-group">
                  <label for="choice #<?php echo $inc;?>" class="col-sm-2 control-label">Choice #<?php echo $inc;?></label>
                  <div class="col-sm-5">
                  <input type="hidden" name="choice_id<?php echo $inc;?>" value="<?php echo $rows['id'];?>">
                  <input type="text" class="form-control" value="<?php echo $rows['text'];?>" name="choice<?php echo $inc;?>" id="choice<?php echo $inc;?>">
                  </div>
                  </div>
                  <?php

                  //print_r($rows);

                  if($rows['is_correct']=="1")

                  $correctAns = '<input type="hidden" name="choice_id'.$inc.'" value="'.$rows['id'].'"><div class="form-group">
                  <label for="Correct Choice Number:" class="col-sm-2 control-label">Correct Choice Number:</label>
                  <div class="col-sm-5">
                  <input type="text" class="form-control" value="'.$inc.'" name="is_correct" id="is_correct">
                  </div>
                  </div>';

                  $inc++;



                  echo $correctAns;
                  ?>

                  <div class="col-sm-offset-2">
                  <button type="submit" class="btn btn-default" name="submit_user" id="subject">Submit</button>
                  <button type="cancel" class="btn btn-raised"><a href="searchquestions.php">Cancel</a></button>
                  </div>
                  </form>


                  updatequestions.php



                  <?php
                  include 'includes/db.php';
                  if(isset($_POST['submit_user']))

                  $questiontext = $_POST['question_text'];
                  $id=$_POST['question_number'];
                  $correct_choice = $_POST['is_correct'];
                  $choices = array();
                  $choices[] = array("question"=>$_POST['choice1'], "answer"=>$_POST['choice_id1']);
                  $choices[] = array("question"=>$_POST['choice2'], "answer"=>$_POST['choice_id2']);
                  $choices[] = array("question"=>$_POST['choice3'], "answer"=>$_POST['choice_id3']);
                  $choices[] = array("question"=>$_POST['choice4'], "answer"=>$_POST['choice_id4']);
                  $choices[] = array("question"=>$_POST['choice5'], "answer"=>$_POST['choice_id5']);

                  $query = "UPDATE questions SET text='$questiontext' WHERE question_number = $id";
                  $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);

                  if($insert_row)

                  $inc= 0;

                  foreach($choices as $choice => $value)
                  if(count($value)>0)
                  $answerInc = $choice+1;

                  if($correct_choice == $answerInc)
                  $is_correct = 1;
                  else
                  $is_correct = 0;

                  $text= $value['question'];
                  $answer = $value['answer'];
                  //echo "<br>".$text;
                  //print_r($value);
                  echo $answerInc;
                  echo "<br>";

                  echo $query = "UPDATE choices SET is_correct='$is_correct', text='$text' WHERE id=$answer";
                  $insert_row = $mysqli->query($query) or die($mysqli->error.__LINE__);
                  if($insert_row)
                  continue;
                  else
                  die('Error : ('.$mysqli->errno . ') '. $mysqli->error);


                  $inc++;


                  $msg = 'Question has been Updated Successfully';
                  header("location:searchquestions.php");
                  exit;


                  ?>






                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 11 at 18:37









                  testertester

                  9010




                  9010



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55051088%2fgetting-the-same-data-for-all-the-records-for-editing-and-updating-a-record-in-p%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Can't initialize raids on a new ASUS Prime B360M-A motherboard2019 Community Moderator ElectionSimilar to RAID config yet more like mirroring solution?Can't get motherboard serial numberWhy does the BIOS entry point start with a WBINVD instruction?UEFI performance Asus Maximus V Extreme

                      Identity Server 4 is not redirecting to Angular app after login2019 Community Moderator ElectionIdentity Server 4 and dockerIdentityserver implicit flow unauthorized_clientIdentityServer Hybrid Flow - Access Token is null after user successful loginIdentity Server to MVC client : Page Redirect After loginLogin with Steam OpenId(oidc-client-js)Identity Server 4+.NET Core 2.0 + IdentityIdentityServer4 post-login redirect not working in Edge browserCall to IdentityServer4 generates System.NullReferenceException: Object reference not set to an instance of an objectIdentityServer4 without HTTPS not workingHow to get Authorization code from identity server without login form

                      2005 Ahvaz unrest Contents Background Causes Casualties Aftermath See also References Navigation menue"At Least 10 Are Killed by Bombs in Iran""Iran"Archived"Arab-Iranians in Iran to make April 15 'Day of Fury'"State of Mind, State of Order: Reactions to Ethnic Unrest in the Islamic Republic of Iran.10.1111/j.1754-9469.2008.00028.x"Iran hangs Arab separatists"Iran Overview from ArchivedConstitution of the Islamic Republic of Iran"Tehran puzzled by forged 'riots' letter""Iran and its minorities: Down in the second class""Iran: Handling Of Ahvaz Unrest Could End With Televised Confessions""Bombings Rock Iran Ahead of Election""Five die in Iran ethnic clashes""Iran: Need for restraint as anniversary of unrest in Khuzestan approaches"Archived"Iranian Sunni protesters killed in clashes with security forces"Archived