php-general Digest 23 Jun 2013 08:27:14 -0000 Issue 8274

2013-06-23 Thread php-general-digest-help
php-general Digest 23 Jun 2013 08:27:14 - Issue 8274 Topics (messages 321454 through 321459): Re: scandir doesn't find all files 321454 by: Ken Robinson 321455 by: Ken Robinson 321456 by: Tamara Temple Re: json stream filter 321457 by: Tamara Temple

php-general Digest 23 Jun 2013 22:15:05 -0000 Issue 8275

2013-06-23 Thread php-general-digest-help
php-general Digest 23 Jun 2013 22:15:05 - Issue 8275 Topics (messages 321460 through 321465): Re: scandir doesn't find all files 321460 by: Carlos Medina Hmm remarkable things? 321461 by: Karl-Arne Gjersøyen 321462 by: Serge Fonville One more newbie question. About

Re: [PHP] json stream filter

2013-06-23 Thread Markus Staab
Gruß, Markus Am 23.06.2013 um 05:08 schrieb Larry Garfield la...@garfieldtech.com: On 06/20/2013 04:26 AM, Markus Staab wrote: Hi! first post on the list, so please bare with me ;-) Yes the usual typo ;) we are handling a lot of cache files in our apps and use json to persist those

[PHP] Re: scandir doesn't find all files

2013-06-23 Thread Carlos Medina
Hi, check the permissions: if the server can access to files or create files if the FTP creates the files with the right permission if a script is running, check if the script can creates the files with the right permission Regards Carlos Medina Am 22.06.2013 21:10, schrieb Daniel Pöllmann:

[PHP] Hmm remarkable things?

2013-06-23 Thread Karl-Arne Gjersøyen
Hello again. Thanks for last answere. It works very well but now I have another remarkable things. Perhaps logic but not for me yet.. I have this source code: (In norwegian but I translate my thoughts through it in english.) The problem with this source code is that it work very well if I select

Re: [PHP] Hmm remarkable things?

2013-06-23 Thread Serge Fonville
Hi, name=varenr[] size=3 seems to be missing a closing HTH Kind regards/met vriendelijke groet, Serge Fonville http://www.sergefonville.nl Convince Microsoft! They need to add TRUNCATE PARTITION in SQL Server

[PHP] One more newbie question. About foreach..

2013-06-23 Thread Karl-Arne Gjersøyen
Hello again. I Got the solution for my last mention problem. Now I can update several rows at once by one single submit action. In my form I have many records and therefor I use an checkbox to just mark those records I like to update. This work just fine in PHP/HTML5 form and I got it as I want.

[PHP] Re: One more newbie question. About foreach..

2013-06-23 Thread Tim Streater
On 23 Jun 2013 at 16:11, Karl-Arne Gjersøyen karlar...@gmail.com wrote: // Foreach get all given serialnumbers as I want it foreach($serialnumber as $snr){ // I got the number of serialnumbers given in the array $count = count($serialnumber); Why not do this *before* the foreach loop?

[PHP] Re: One more newbie question. About foreach..

2013-06-23 Thread Maciek Sokolewicz
On 23-6-2013 17:11, Karl-Arne Gjersøyen wrote: Hello again. I Got the solution for my last mention problem. Now I can update several rows at once by one single submit action. [...] I have tried to search in google and on PHP.net but can't fine anything that explain my problem. I like to have