implode() is a PHP function that joins together an array (optionally based on a 'glue' (inverse delimiter)) and returning a string.

learn more… | top users | synonyms

0
votes
0answers
14 views

JPGraph + mysql array not reading values

I'm connecting to mySQL and running a simple query and returning the query into an array, then imploding the array and attempting to graph it using jpgraph, but I don't get any data points. <?php ...
1
vote
3answers
33 views

PHP implode() using conditional logic based on object index

Assuming a list like this: $array = array('item1', 'item2', 'item3'); // etc... I would like to create a comma separated list like so: implode(',', $array); But have the added complication ...
1
vote
3answers
61 views

php implode doesn't work as expected

I made some SimpleXMLObject and converted it into an array and implode them but the result is not imploded string but the first element of array alone. funnier thing is it's working as expected in my ...
1
vote
1answer
65 views

PHP array implode

I am using a query to get all the column names from my database, then I am trying to display the results comma seperated, in quotation marks and in (). And also make variables out of them.(Take a look ...
0
votes
2answers
36 views

PHP array and implode with blank/null values

I have a array which i generated by values in a database, the example is below: $addressarray = array($results['client']->client_city, $results['client']->client_county, ...
0
votes
3answers
56 views

PHP implode limit bug?

I've got a script that creates an array with around 40,000 entries, PHP arrays have no limit except the memory of the server... However the PHP function implode() simply does not output anything, ...
1
vote
5answers
56 views

How to get the value of an array after first index?

I have an array which contains the full name. I know how to display the last name which basically resides in the 1st index. How can I display the rest of the values after the last name? $fullname = ...
1
vote
7answers
103 views

Implode() array and make new line after two elements

I am looking to echo comma separated elements of an array e.g: Element1, Element2, Element3, Element4, Element5, Element6 However, for the purposes of keeping the echoed elements neat, I might need ...
0
votes
3answers
49 views

how to remove curly braces in php

I am having one variable $uuid={"uuid": "28fb72ed-0e97-4e78-9404-b676289b33ee"}; which i am getting after execution i need to extract 28fb72ed-0e97-4e78-9404-b676289b33ee just the number how do ...
1
vote
3answers
45 views

PHP: Implode data from a multi-dimensional array

I'm a novice at PHP and I need a quick solution to the following problem but can't seem to come up with one: I have a multi-dimensional array like so Array ( [0] => Array ( ...
0
votes
1answer
39 views

inserting multiple rows in sqlite using implode [duplicate]

I have tried to insert multiple rows but got empty rows in database and other errors. So,tried to use implode (as a better alternative?) but must be doing something wrong here. $sql = array(); ...
0
votes
2answers
36 views

Get 2 words in every array value

I have code like this one $words2= 'If you want to have a preformatted block within a list, indent by eight spaces.'; $forbiddenwords=array("word1","word2"); foreach($words2 as $b=>$v) { ...
-1
votes
3answers
85 views

PHP: implode() Invalid arguments passed [closed]

I am using Codeigniter and its validation rules - a custom callback validation. Anyway, this seems not to be CI related I think. I've got this function to return a string … function ...
0
votes
2answers
45 views

How do I randomly jumble a string imploded by ',' in PHP (ex: a,b,c = c,b,a) in a oneliner?

How do I randomly jumble a string imploded by ',' in PHP (ex: a,b,c = c,b,a) in a one-liner? Here is an example srand((double)microtime*1000000); $foo=array( a => "a", b => "b", c => ...
1
vote
1answer
155 views

Need php pdo implode arrays and insert multiple rows in mysql

Based on this (How to insert an array into a single MySQL Prepared statement w/ PHP and PDO) information trying to insert multiple rows. Input (multiple rows) <input type="text" ...
1
vote
1answer
33 views

How do I keep my paragraphs seperate?

I am writing a word limit function for my custom blog. I want to limit the words on the index page and remove any formatting. At the moment my code is: function limit_words($string, $word_limit){ ...
1
vote
2answers
45 views

Java custom implode methode like in PHP

I am trying to replicate the php function implode() in Java. This is what I made: private String implode(String delimiter, Map<String, String> map){ StringBuilder sb = new StringBuilder(); ...
1
vote
1answer
43 views

How to implode data in Opencart?

I want to implode platform data with commas, like: Windows, Mac, Linux. I've tried different options, but still have not found a solution. So i have a question how to implode that data which i get ...
0
votes
2answers
124 views

PHP - Inserting multiple rows in a while loop

Im trying to insert multiple rows in a while loop with a form using implode but cannot seem to make it work. Pls help. I want to insert multiple values named "weight". Like values 30,20,15,10,5 and ...
0
votes
0answers
22 views

PDO binding php variables from input date and array for WHERE IN

I am new to PHP/PDO so please bear with me. I am trying to select the price of a room for a specific season, passing the Id of the room. The room/s is/are selected with checkboxes. (users can check ...
0
votes
2answers
38 views

Use unset result without defining a new array in php

I am trying to create a dynamic link, in this way: Take an array Search for the key of one element Delete this element Implode the array elements to a string Show the string as a parameter in the ...
0
votes
1answer
21 views

php textarea unable to make it a string with no spaces tabs or enterkeys

Well this is my problem i am not able to make a string out of the array... i want it to only have numbers and commas, i have a function for that but it recieves a string and by some reason i am not ...
0
votes
3answers
49 views

Multidimensional Array Implode

Here is an example format of the multidimensional array I'm dealing with: Array ( [1] => Array ( [code] => PPJ3 [street] => 34412 Fake Street [city] => Detroit [state] => MI ...
0
votes
0answers
44 views

separate string with delemeter using php and mysql to store values

Creating a friend request page to allow the user to send request to others. For this I need to store friend array in the database and separate each username by a comma. So if anyone can help me? ...
1
vote
1answer
158 views

php + mysql + how to add a comma to split the string in the database

i am creating a friend request page that it need to take the friends request as an array than separate each username by a comma. i do not know what to use the implode or the explode i did use ...
0
votes
1answer
122 views

PHP/MySQL Implode into multiple rows?

is it possible to implode a checkbox value into multiple values to insert into a database? At current I have this: $tags = implode(', ', $_POST['checkboxname']); This gives me the value of ...
-1
votes
1answer
162 views

Use php array to generate a single MySQL INSERT query

I have a dynamically generated table listing all users in a given group, and each user has a checkbox next to their name. The group admin may select/deselect these checkboxes to include/exclude a ...
1
vote
1answer
36 views

Implode one array then move onto the next array

Having a little problem with imploding a number of arrays within a foreach loop. The arrays look like this at the moment. Array ( [0] => Array ( [img] => ...
0
votes
2answers
86 views

PHP Get Values Out of Checkbox Array

I am trying to figure out how to get values out of a checkbox array. The checkbox array var_dump looks like the following: array (size=50) 0 => string '104702|0' (length=8) 1 => string ...
0
votes
2answers
214 views

PHP - PDO not taking imploded array as question mark parameter for IN clause in SELECT query

I have a problem with a question mark parameter in a prepared statement using PDO. My Query class looks like this (for now, I'm still adding functionality like data limits, custom parameters filtering ...
0
votes
2answers
73 views

Array of strings to a string: Issue using Implode

following directions found here, I'm trying to convert an array of strings into a string, but I'm getting some nulls that I can't remove. The code I've been using: First, I fill in the textviews ...
-2
votes
2answers
42 views

How to query a database with an array outside a loop

Hie. I am trying not to place an SQL query inside a loop, since this improves performance. I think I am supposed to use implode. But can't figure out how to do it. Here is my code: <?php ...
0
votes
0answers
32 views

Uploading large data to mysql

Please help, I need to upload large data like the one below `JOHNSON ABIODUN 0036926241 Guaranty Trust Bank Plc N10,990.00 Tracking: 219265 | Moses Ubogun 0033584363 Guaranty Trust Bank Plc ...
0
votes
1answer
110 views

Error on imploding fields and values in MySQL [closed]

I want to add an array into ORDER table but at some point I get the following error : You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the ...
0
votes
3answers
261 views

PHP: Saving multiple checkbox values in SQL

I'm trying to make a form that writes away multiple checkbox values in a single SQL record I have some code so far, but i have no idea what i'm doing wrong. Here's what i have: (my table that ...
0
votes
1answer
37 views

Getting output from a query with an implode function in it

I'm trying to determine whether a combination of topics related to a forum is unique. This is done while adding topics to a forum. The uniqueness is checked with this code and query: $options = ...
0
votes
1answer
56 views

How to implode and update this item to database

I have table item like this: id_item color stock 1 red,green,yellow 10,20,30 here a table cart : id id_trans id_item color qty 1 123 1 ...
-1
votes
1answer
41 views

How to implode this array

I have table item like this: id color stock 1 red,green,yellow 10,20,30 and i grab an item with red color 5 and green 2 and put on table x like this : id id_product ...
1
vote
2answers
38 views

Tokenising and reconstructing a string containing delimited name-value pairs

I have a string structured as such: "01;AA:02;AB:03;AC:" is there a way to make it into a $_POST style format where: $MyVar['01'] = "AA" $MyVar['02'] = "AB" $MyVar['03'] = "AC" ? i would ...
0
votes
1answer
125 views

Error decoding JSON input via json_decode

I'm writing my first web service, and I have a problem related to JSON data passing. I have my web service divided in two files: controller.php, which contains the service handler, and service.php, ...
0
votes
0answers
54 views

[<a href='function.implode'>function.implode</a>]: Invalid arguments Error?

I am getting the following error, [08-Mar-2013 22:10:20] PHP Warning: implode() [<a href='function.implode'>function.implode</a>]: Invalid arguments passed in ...
0
votes
3answers
49 views

implode assotiative array with preserving keys?

$arr=array('a'=>1,'b'=>2); echo implode(',',$arr) // returns '1,2' I need to get a=1,b=2 as result. I know that I can get it by using foreach but I aware that there is a shorter way with ...
0
votes
2answers
97 views

Store and fetch CSV columns from DB using implode and magic __get()

I have PHP code to select categories from tbl_categorie, Now I have a multiple select in a form where an article can have more than one categorie. While inserting the values in database, I want to ...
6
votes
1answer
107 views

Serialize or Implode

I need to store lots of two-dimensional arrays inside database and was not sure what to use: serialize or implode. So I did a few tests, to find out which one is working faster and came to the ...
0
votes
1answer
47 views

PDO.How i can use this function?

I'm very new at PDO and i write this code.But this code is unsecure. function update_user($update_data) { global $pdo; $update = array(); foreach($update_data as $field=>$data){ $update[] = '`'. ...
0
votes
1answer
76 views

using implode inside insert query

How can I use implode inside query to insert the values into db. here is my example: Html form : <form action="insert.php" method="post"> name:<input type="text" name="name" /><br ...
0
votes
0answers
45 views

Display array of links as string separated by commas using implode

I’m trying to display an array of href links as a string with the results separated by commas so as to display:- I Am The Walrus, Hello, Goodbye, The Fool On The Hill, Magical Mystery Tour, Lady ...
1
vote
1answer
54 views

is there anything like implode for arrays of arrays?

I understand implode works like this: $array = array('value', 'value2'); echo implode(',', $array) // Gives you: value, value2 I have an array that looks like this: $array = array( ...
0
votes
2answers
52 views

Join array elements with a string

I want join array elements with a string (ex:-), i tried it with implode, but it don't work in my code. How can fix it? PHP: <?php $count = 1; $ttttt = json_decode('["110,2"]'); $nnnnn ...
0
votes
1answer
81 views

Warning: implode() [function.implode]: Invalid arguments passed in descpage.php on line 221

I am getting the following error: Warning: implode() [function.implode]: Invalid arguments passed in /descpage.php on line 221 I read through the site and cannot see this covered. Could you please ...

1 2 3 4 5