2
votes
7answers
868 views
display contents of .txt file using php
using this code
<?php
foreach (glob("*.txt") as $filename) {
$file = $filename;
$contents = file($file);
$string = implode($contents);
echo $string;
echo …
2
votes
3answers
2k views
Fastest way to implode an associative array with keys
I'm looking for a fast way to turn an associative array in to a string. Typical structure would be like a URL query string but with customizable separators so I can use '&' for xhtml links or …
1
vote
2answers
152 views
php imploding array help
I am trying to the implode the userIDs in the $users_in_range array the problem is it is iploding miles instead of userid
<?PHP
$users_in_range = users_in_range($lat, $long, 500, true);
// …
0
votes
3answers
37 views
Using implode to group information from acquired in a whileloop (problem solved)
Solved the problem thanks to all of your tips. Thanks a lot for all the answers. d(^_^d)
I am having the following problem. I have the numbers 1/2/3/4/5/6 and I want to separate them into two …
0
votes
3answers
73 views
implode invalid arguments
function delete($rowid)
{
$rowids = implode(", ",$rowid);
$sql = "DELETE FROM pms WHERE id IN (".$rowids.")";
print $sql;
}
if (isset($_POST['submit']))
{
delete($rowid);
}
?>
…
0
votes
3answers
331 views
PHP “implode” error when submitting form
Just noticed I get these errors if I DON'T select a checkbox and submit:
Warning: implode() [function.implode]: Invalid arguments passed in /home/content/o/l/t/oltvcb/html/feedback_mtg.php on line …
-1
votes
5answers
274 views
php implode explode can do it?
eg: existing data retrieve from db field: a,b,c,d,e
so now $data= "a,b,c,d,e";
eg: new data to be added--- cc, gg
final value saved into db will be $finaldatatobeupdatedintodb= "a,b,c,d,e,cc,gg";
…
