this is really hard for me, i\'m trying to store multiple rows from my table in mysql into a single variable
$mysql_statementJc = \"SELECT * FROM `dog`.`ca
You can also do it as:
$followl = array();
while($row = mysql_fetch_array($mysql_commandJc))
{
$followl[] = $row['industry'];
}
$groupConcat = implode(" OR ",$followl);
echo $groupConcat;
Some Explanation:
Store values into an array $followl
and than use implode()
function for imploding with OR.
Side note:
Please use mysqli_*
or PDO
becuase mysql_*
is deprecated and no more available in PHP 7.