Я сделал цикл foreach, но я могу голосовать только за первый пост в фильме. Если я пытаюсь проголосовать за другие изображения, изменения не отражаются, и я вижу только изменения, внесенные в первое сообщение.
<?php foreach($imgsqlResults as $imgre): ?>
<?php
$sql2 = "SELECT * FROM posts";
$result2 = mysqli_query($conn, $sql2);
while ($rows = mysqli_fetch_assoc($result2)) {
$postid = $rows['post_id'];
$post_owner = $rows['user_unam'];
$post_pic_path = $rows['pic_path'];
}
?>
<div class='postsContainer' id='<?php echo $postid ?>'>
<div class='profile-cont'>
<div class='who-post'>
<div class='who-post-name'><a href='$imgrefrence'>Marwan Mason</a></div>
<div class='who-post-img'><img src='photos/<?php echo $imgre['pic_path'] ?>'></div>
</div>
<div class='img-ctn'><img src='photos/<?php echo $imgre['pic_path'] ?>'></div>
<div class='star-rating'>
<form method='POST' >
<input type='h' name='imgId<?php echo $imgre['id'];?>' value="<?php echo $imgre['id'];?>">
<input id='star-1' type='radio' name='rating' value='star-5'>
<label for='star-1' title='Perfection'></label>
<input id='star-2' type='radio' name='rating' value='star-4'>
<label for='star-2' title='Amazing'></label>
<input id='star-3' type='radio' name='rating' value='star-3'>
<label for='star-3' title='wow'></label>
<input id='star-4' type='radio' name='rating' value='star-2'>
<label for='star-4' title='Nice'></label>
<input id='star-5' type='radio' name='rating' value='star-1'>
<label for='star-5' title='Not Bad'></label>
<input type="submit" name="submit" value="submit"/>
</form>
</div></div>
</div>
<?php
if(isset($_POST['submit'])){
if(isset($_POST['rating'])){
echo "You have selected ";
}else{ echo "<span>Please choose any radio button.</span>";}
}?>
<?php endforeach ?>
Вы можете: (Хотя я не рекомендую ваш шаблон кодирования)
Сделайте уникальные идентификаторы для каждой формы в foreach
,
Сделать все form
& input
уникальны (или хотя бы способны обрабатывать их отдельно).
как это
<?php
foreach ($imgsqlResults AS $key => $item) {
?>
<div class='postsContainer'>
<div class='profile-cont'>
<div class='who-post'>
<div class='who-post-name'><a href='$imgrefrence'> Marwan Mason </a></div>
<div class='who-post-img'><img src='photos/<?php echo $item['pic_path'] ?>'></div>
</div>
<div class='img-ctn'><img src='photos/<?php echo $item['pic_path'] ?>'></div>
<div class='star-rating'>
<form method='POST'>
<!-- This unique_id is to handle each form separately -->
<input type="hidden" name="unique_id" value="<?= $item['your_record_primary'] ?>"/>
<!-- This your_record_primary will make every input name unique -->
<input id='star-1<?= $key ?>' type='radio' name='rating<?= $item['your_record_primary'] ?>'
value='star-5'>
<label for='star-1' title='Perfection'></label>
<input id='star-2<?= $key ?>' type='radio' name='rating<?= $item['your_record_primary'] ?>'
value='star-4'>
<label for='star-2' title='Amazing'></label>
<input id='star-3<?= $key ?>' type='radio' name='rating<?= $item['your_record_primary'] ?>'
value='star-3'>
<label for='star-3' title='wow'></label>
<input id='star-4<?= $key ?>' type='radio' name='rating<?= $item['your_record_primary'] ?>'
value='star-2'>
<label for='star-4' title='Nice'></label>
<input id='star-5<?= $key ?>' type='radio' name='rating<?= $item['your_record_primary'] ?>'
value='star-1'>
<label for='star-5' title='Not Bad'></label>
<input type="submit" name="submit" value="submit"/>
</form>
</div>
</div>
</div>
<?php
if (isset($_POST['submit']) && (!empty($_POST['unique_id']) && $_POST['unique_id'] === $item['your_record_primary'])) {
if (isset($_POST['rating' . $item['your_record_primary']])) {
echo "<span>You have selected :<b> " . $_POST['rating' . $item['your_record_primary']] . "</b></span>";
} else {
echo "<span>Please choose any radio button.</span>";
}
}
}
?>
id='star-1<?= $key?>'
по сути даст вам:
<!-- First iteration will look like -->
<input id='star-10 />
.
.
<input id='star-50 />
<!-- Next iteration will look like -->
<input id='star-11 />
.
.
<input id='star-51 />
НОТА: Если вы используете id
свойства этих input
элементы в вашем JS, возможно, вы должны найти способ справиться с этими динамическими ids
,
Объяснение:
Так как в вашем коде if(isset($_POST['submit'])
внутри петли.
Нам нужно оценить истину ТОЛЬКО за право if(isset($_POST['submit'])
при отправке формы, и для достижения этого мы вводим и дополнительный вклад <input type="hidden" name="unique_id" value="<?= $item['your_record_primary'] ?>"/>
сохранить уникальность.
Затем мы заменяем if(isset($_POST['submit'])
с if (isset($_POST['submit']) && (!empty($_POST['unique_id']) && $_POST['unique_id'] === $item['your_record_primary']))
, Так что только запрос с правом unique_id
получает внутренности, если условие. Надеюсь, я прояснил себя достаточно ясно.
вы можете использовать как это
<html>
<body>
<form method='POST'>
<input id='star-1' type='radio' name='rating[]' value='star-5'>
<label for='star-1' title='Perfection'></label>
<input id='star-2' type='radio' name='rating[]' value='star-4'>
<label for='star-2' title='Amazing'></label>
<input id='star-3' type='radio' name='rating[]' value='star-3'>
<label for='star-3' title='wow'></label>
<input id='star-4' type='radio' name='rating[]' value='star-2'>
<label for='star-4' title='Nice'></label>
<input id='star-5' type='radio' name='rating[]' value='star-1'>
<label for='star-5' title='Not Bad'></label>
<input type="submit" name="submit" value="submit"/>
</form></body>
</html>
<?php
if(isset($_POST['submit'])){
if(isset($_POST['rating'])){
echo "<span>You have selected :<b> ".$_POST['rating'][0]."</b></span>";
}else{ echo "<span>Please choose any radio button.</span>";}
}