Jump to content

issue with implode


HDFilmMaker2112

Recommended Posts

The below generates an error of: Warning: implode() [function.implode]: Invalid arguments passed in /home/zyquo/public_html/ghosthuntersportal.com/admincp.php on line 74

 

$product_id=$_GET['id'];
$sql300="SELECT * FROM keywords WHERE keywords.product_id=".$product_id."";
$result300=mysql_query($sql300);
while($row300=mysql_fetch_array($result300)){
$keyword.=$row300['keyword'];
}
$keyword=implode(",",$keyword);

<p><label>Product Keywords:</label> <input type="text" name="keyword" value="'.$keyword.'" size="30" /></p>

 

When I remove the implode, the input value is populated with the information, it just doesn't have commas in between each keyword.

 

EDIT: Wrong forum... please move to PHP Coding Help.

Link to comment
https://forums.phpfreaks.com/topic/236388-issue-with-implode/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.