私は最近 php の作業を開始しましたが、なぜループが正常に機能していないのかわかりません。問題は $sexy['post_id'] の値が更新されないことです。テーブルに2行あります
$getpostId = "SELECT post_id FROM likersTable WHERE executed='0'";
$postIdDetails = mysqli_query($dbConnect,$getpostId)
or die('Some error in post id');
$getAllUserId = "SELECT * FROM likersTable";
$allUserIdDetails = mysqli_query($dbConnect,$getAllUserId)
or die('Some error in all user id');
while($sexy = mysqli_fetch_array($postIdDetails)){
while($shitty = mysqli_fetch_array($allUserIdDetails)){
echo 'User Id: '.$shitty['user_id'].'<br />';
echo 'Post Id: '.$sexy['post_id'].'<br />';
}
}