How to insert array value into single column and single row in php

Oo Aung Htet Paing

I want to insert array value into database single row and column

$str_accommodation_level = "SELECT * FROM interest";
$query_accommodation_level = $dbcon->query($str_accommodation_level);
while ($accommodation_level = $query_accommodation_level->fetch_array()) {
    $level_from = 'type' . $accommodation_level['id'];
    if (isset($_COOKIE[$level_from])) {
        $level_data += '<span>' . $_COOKIE[$level_from] . '</span> <br>';
    }
    print $level_data;
}
Abhishek Sharma

use php implode. The implode() function returns a string from the elements of an array.

$arr = array('1','2','3','4');
$str=implode(",",$arr);

or insert like that :-

INSERT INTO table_name (column1)
VALUES ('$str')

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

PHP: How to select single value from single row in MySQL without using array for results

From Dev

INNER JOIN SQL/PHP - Need a single row with array on column

From Dev

How to update a single column on a single row?

From Dev

How to convert a single column file into a single row?

From Dev

VBA: Add single value to single column array

From Dev

how to insert elements single array into multidimensional array php

From Dev

how to insert multiple checkbox values in single column in database using php

From Dev

How to combine single column value from many row by loop

From Dev

How to SELECT multiple values from a row and join it as a single column value

From Dev

Php/MySQL: Unable to insert a single row only

From Dev

How to insert two variable value into single field in php?

From Dev

insert a single value into new created column

From Dev

How to show all value of a single column into a single row in pl/sql report?

From Dev

To retrieve a single row corresponding to a column value in java

From Dev

Assigning value to a single row in new column

From Dev

Accessing row and column from a single dimension array

From Dev

How to store a single column of a single row out of a MySQLi prepared statement in a PHP variable?

From Dev

insert single row with a preparedstatement

From Dev

Python 3 how to add a single value to multi dimension array column

From Dev

Concatenating a single column into a single row

From Dev

Convert single column to single row

From Dev

How to reshape numpy array of array into single row

From Dev

How to insert multiple data of same name from single form in multiple row of same column of table

From Dev

How to insert multiple data of same name from single form in multiple row of same column of table

From Dev

How to insert multiple columns value under a single column and separate the column name?

From Java

How to store an entire list in a single row of a column?

From Dev

Convert row to a single column

From Dev

How to insert a value into a sorted Vector in a single pass?

From Dev

How to append array and insert into single field in oracle

Related Related

  1. 1

    PHP: How to select single value from single row in MySQL without using array for results

  2. 2

    INNER JOIN SQL/PHP - Need a single row with array on column

  3. 3

    How to update a single column on a single row?

  4. 4

    How to convert a single column file into a single row?

  5. 5

    VBA: Add single value to single column array

  6. 6

    how to insert elements single array into multidimensional array php

  7. 7

    how to insert multiple checkbox values in single column in database using php

  8. 8

    How to combine single column value from many row by loop

  9. 9

    How to SELECT multiple values from a row and join it as a single column value

  10. 10

    Php/MySQL: Unable to insert a single row only

  11. 11

    How to insert two variable value into single field in php?

  12. 12

    insert a single value into new created column

  13. 13

    How to show all value of a single column into a single row in pl/sql report?

  14. 14

    To retrieve a single row corresponding to a column value in java

  15. 15

    Assigning value to a single row in new column

  16. 16

    Accessing row and column from a single dimension array

  17. 17

    How to store a single column of a single row out of a MySQLi prepared statement in a PHP variable?

  18. 18

    insert single row with a preparedstatement

  19. 19

    Python 3 how to add a single value to multi dimension array column

  20. 20

    Concatenating a single column into a single row

  21. 21

    Convert single column to single row

  22. 22

    How to reshape numpy array of array into single row

  23. 23

    How to insert multiple data of same name from single form in multiple row of same column of table

  24. 24

    How to insert multiple data of same name from single form in multiple row of same column of table

  25. 25

    How to insert multiple columns value under a single column and separate the column name?

  26. 26

    How to store an entire list in a single row of a column?

  27. 27

    Convert row to a single column

  28. 28

    How to insert a value into a sorted Vector in a single pass?

  29. 29

    How to append array and insert into single field in oracle

HotTag

Archive