Hi,
I am having a problem with implode() function in PHP.
whenever i am running my code it display an error like.
Warning: implode() [function.implod e]: Bad arguments. in D:\xampp\htdocs \admin\addspecs .php on line 8
and my code is
what is the error in this code can anybody tell me.
I am having a problem with implode() function in PHP.
whenever i am running my code it display an error like.
Warning: implode() [function.implod e]: Bad arguments. in D:\xampp\htdocs \admin\addspecs .php on line 8
and my code is
Code:
$as = $_POST;
$i=1;
while($i<=16)
{
$ad = $as['txtRow'.$i];
$aw = implode(",",$ad);
$qw = "#".$aw;
echo $qw;
$i++;
}
Comment