greetings,
How do i achive this format :
$invisble=array("eli", "edith", "elibest")
This is what i do,
while ($row=mysql_fetch_array($result)) {
$mem_id = $row['membership_id'];
$hwmany = explode (",", $mem_id);
$invisble="('".implode("','",$hwmany)."')";
}
the output of the script is : ('eli')(edith')('elibest') what i want is ('eli','edith','elibest')
How will i do that?
Thanks,
eli
😃