I have a table name steady, I want to get all the rows that has Monday, in an imploded value in days column, what I tried however is not working it is giving the response,
MY CODE - What I have tried
$sew = " SELECT t.* FROM steady t WHERE FIND_IN_SET(Monday, t.days) > 0";
$eeo = mysqli_query($con, $sew);
while($fre = mysqli_fetch_array($eeo)){
$product_id = $fre['product_id'];
var_dump ($product_id); //NO VARDUMP DATA SHOWS HERE.
}
RESPONSE AFTER TRYING IT OUT
mysqli_fetch_array() expects parameter 1 to be mysqli_result, boolean given in C:\xampp\htdocs\b\d\steadysubscribersajax.php on line 163