Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i apologize if the question is wrong. i am a still a newbie and a learner however i would appreciate if someone correct me if i am somewhere wrong.

here in the Class method i am using for Inserting the data into the database

public funtion insert($table,$col,$value)
{
    if(is_array($col) && is_array($value))
    {
        $query = "INSERT INTO ".$table."(" . implode(",",$col) . ") VALUES(" . implode(",",$value) . ")";
    }
    else
    {
        $query = "INSERT INTO " . $table . "(" . $col . ") VALUES(". $value . ")";
    }
}

now here i am determining if the $col and $value is an array if yes then process it.

however i have a problem here since the VALUES in the Insert statement needs to be represnted in the single or double quote format it will not process the query and hence print the error

for example the below code would print the error

$query = "INSERT INTO users(username,email) VALUES(test,test@test.com)";

and the correct format will be

$query = "INSERT INTO users(username,email) VALUES('test','test@test.com')";

now in the col value i would like to add the single quotes to every value in the array for example the $value array which is like this.

$value = array('test','test@test.com');

should give back the value

'test','test@test.com'

instead oof

test,test@test.com

how do i achieve it?

thank you?

share|improve this question
It will give back the second example because the single quotes are for PHP to parse, and are not part of the strings. – BoltClock Jan 9 '11 at 11:25
1  
Plus, concatenating like that will be very ugly, try sprintf() instead. You also need to make sure you escape your table, column and values. – BoltClock Jan 9 '11 at 11:26
yes then how do i make sure that single quotes remains in the string so that i can parse that values using mysql_query(); – Ibrahim Azhar Armar Jan 9 '11 at 11:27
i would appreciate if you could explain me with the codes as i am still a newbie and i am not able to understand what are you exactly trying to say. – Ibrahim Azhar Armar Jan 9 '11 at 11:28

4 Answers

up vote 2 down vote accepted
 $query = "INSERT INTO $table ('" . implode("','",$col) . "')
           VALUES ('" . implode("','",$value) . "')";

Make sure that neither $col nor $value is empty.

share|improve this answer

Right code:

public funtion insert($table,$col,$value)
{
    if(is_array($col) && is_array($value))
    {
        $query = "INSERT INTO ".$table."(" . implode(",",$col) . ") VALUES('" . implode("','",$value) . "')";
    }
    else
    {
        $query = "INSERT INTO " . $table . "(" . $col . ") VALUES('". $value . "')";
    }
}

CHANGE:

VALUES(" . implode(",",$value) . ")

TO

VALUES('" . implode("','",$value) . "')

(Your output:)

VALUES(demo,demo2)

(New Output:)

VALUES('demo','demo2')
share|improve this answer
thank you that is working – Ibrahim Azhar Armar Jan 9 '11 at 11:40

you could do this?

$value = array("'test'","'test@test.com'");
share|improve this answer

You can use array_map() method:

function addQuotes($str)
{
    return "'".$str."'";
}

$value = array_map("addQuotes", $value);

or follow a Oswald's answer recommendations.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.