Jump to content

SQL UPDATE with array imploded


torsuntsu

Recommended Posts

Hi, i´m using this code to update a database, but i get an error,

and i can´t figure it out where the problem is. Here´s the code:

 

function alter_page($page_data, $page_id){

 

array_walk($page_data,'array_sanitize');
 
$fields= '`'.implode('`, `',array_keys($page_data)).'`';
 
$data= '\''.implode('\', \'',$page_data).'\'';
 
mysql_query("UPDATE `paginas` SET ($fields)=($data) WHERE `id`= $page_id")or die(mysql_error());
 
 }
 
Need help. 
 
Thanks,
TorSunTsu
Link to comment
https://forums.phpfreaks.com/topic/283317-sql-update-with-array-imploded/
Share on other sites

 

function alter_page($page_data, $page_id)
{
    array_walk($page_data, 'array_sanitize');
    $setParamsAry = array();
    foreach($page_data as $field => $value)
    {
        $setParamsAry[] = "`{$field}` = '{$value}'";
    }
    $setParamsStr = implode(', ', $setParamsAry);
    $query = "UPDATE `paginas` SET {$setParamsStr} WHERE `id`= $page_id";
    mysql_query($query)or die(mysql_error());
}

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.