[PHP] scandir() permissions

2009-07-26 Thread kranthi
code: http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] This is the kind of [expletives deleted] answer that is certain to prevent bugs being reported.

2009-07-26 Thread Per Jessen
Robert Cummings wrote: > Don't forget nobody is being paid to handle bug reports, it's all on a > volunteer basis and I'm quite certain they get oodles of real bogus > bugs. Hi Robert it's a two-way thing - nobody is paying me to write any bug reports, I'm also volunteering my time and effort. N

Re: [PHP] open source forum

2009-07-26 Thread mrfroasty
Hello, I need some advice in picking a PHP forum for a group of people, I know there are couple of them but could somebody from here give advice on which one to choose. ***My strongest requirements I need localization support, as that software might need to be translated into a language other tha

Re: [PHP] open source forum

2009-07-26 Thread David Robley
mrfroasty wrote: > Hello, > > I need some advice in picking a PHP forum for a group of people, I know > there are couple of them but could somebody from here give advice on > which one to choose. > > ***My strongest requirements I need localization support, as that > software might need to be tr

Re: [PHP] open source forum

2009-07-26 Thread mrfroasty
Thanks I will have a look at those list GR mrfroasty David Robley wrote: > mrfroasty wrote: > > >> Hello, >> >> I need some advice in picking a PHP forum for a group of people, I know >> there are couple of them but could somebody from here give advice on >> which one to choose. >> >> ***M

Re: [PHP] open source forum

2009-07-26 Thread K. N. Lesmer
On Sun, 26 Jul 2009 14:50:03 +0200 mrfroasty wrote: > Hello, > > I need some advice in picking a PHP forum for a group of people, I > know there are couple of them but could somebody from here give > advice on which one to choose. > > ***My strongest requirements I need localization support, as

Re: [PHP] Language translation

2009-07-26 Thread Phpster
On Jul 25, 2009, at 9:37 PM, Skip Evans wrote: Hey all, We got a new project and language translation of content is a major priority. I've googled around and seen lots of options, but I'd like to hear from the list about more real world experiences about what some of you found and wh

Re: [PHP] Language translation

2009-07-26 Thread Miles Thompson
gettext -not PHP, but a GNU project. PHP hooks: http://ca.php.net/manual/en/book.gettext.php, which contains a link to the project. In the past I've coded arrays of prompts, this is a more native solution. Cheers - Miles On Sat, Jul 25, 2009 at 10:37 PM, Skip Evans wrote: > Hey all, > > We got a

[PHP] OOP Design Software

2009-07-26 Thread Daniel Kolbo
Hello, Is there an objected oriented programming software that can help me keep track of my methods and properties of my objects. My memory is not what it used to be, and i'd like to have a quick 'overview' or layout of all the objects I have to work with. Maybe the software would even let make

RE: [PHP] OOP Design Software

2009-07-26 Thread Caner BULUT
Hi Daniel, You can use Eclipse with plugin PDT or Zend Studio. They can track your classes and methods. They can remember your methods and classes also they have code completion abilities. Thanks Caner. -Original Message- From: Daniel Kolbo [mailto:kolb0...@umn.edu] Sent: 26 July 2009

Re: [PHP] OOP Design Software

2009-07-26 Thread Eddie Drapkin
On Sun, Jul 26, 2009 at 12:54 PM, Caner BULUT wrote: > > Hi Daniel, > > You can use Eclipse with plugin PDT or Zend Studio. They can track your > classes and methods. They can remember your methods and classes also they > have code completion abilities. > > Thanks > Caner. > > -Original Message

Re: [PHP] OOP Design Software

2009-07-26 Thread Daniel Kolbo
Caner BULUT wrote: > Hi Daniel, > > You can use Eclipse with plugin PDT or Zend Studio. They can track your > classes and methods. They can remember your methods and classes also they > have code completion abilities. > > Thanks > Caner. > > -Original Message- > From: Daniel Kolbo [mai

Re: [PHP] Language translation

2009-07-26 Thread Rudi Ullon
I'm also starting with a multilanguage project, and after a little research, we've decided to use this gettext http://savannah.nongnu.org/projects/php-gettext/ Take a look.. might be useful to you also. --- Regards / Saludos Rudi Ullon

Re: [PHP] Sorting mySQL query - one order from multiple fields

2009-07-26 Thread George Langley
In case anyone else was wondering, the command to use is COALESCE() as in: $theQuery = mysql_query("select variousFields from theTable where date = '$currDate' ORDER BY COALESCE(rotime2,rotime1,time)"); COALESCE() will use "one" of the variables, being the one it finds a value for first,

[PHP] JS alert that links to a file

2009-07-26 Thread Skip Evans
Okay, I know I've done this before, but now I'm blanking out. I have code that creates a CSV file, and when it's done I want a JS alert to pop up and let them save the file. Isn't this some kind of alert() type call on the JS side??? I know I've done this before and I've been on Google an hou

Re: [PHP] JS alert that links to a file

2009-07-26 Thread Paul M Foster
On Sun, Jul 26, 2009 at 09:55:14PM -0500, Skip Evans wrote: > Okay, I know I've done this before, but now I'm blanking out. > > I have code that creates a CSV file, and when it's done I want > a JS alert to pop up and let them save the file. > > Isn't this some kind of alert() type call on the JS

[PHP] Saving server side file to local machine with JS

2009-07-26 Thread Skip Evans
Sorry, I should have been clearer. When PHP finishes creating the file I need one of the JS alert type windows to appear that says.. "Your file has completed, would you like to save it to your machine?" Like you get when you download a file. If I knew the JS code to do this I perhaps could

Re: [PHP] JS alert that links to a file

2009-07-26 Thread LinuxManMikeC
On Sun, Jul 26, 2009 at 8:55 PM, Skip Evans wrote: > Okay, I know I've done this before, but now I'm blanking out. > > I have code that creates a CSV file, and when it's done I want a JS alert to > pop up and let them save the file. > > Isn't this some kind of alert() type call on the JS side??? >

Re: [PHP] JS alert that links to a file

2009-07-26 Thread Skip Evans
LinuxManMikeC wrote: Okay, right, I remember this. But it has to be in it's own file, otherwise you get the 'headers already sent error', right? Is there any way around that? Any way to get it right at the end of where the file is created??? Thanks! Skip -- ==

[PHP] Correct code ?? PHP Basic pw athentication with mysql

2009-07-26 Thread Jason Guritz
I cant seem to get this to work. Any ideas?? And If I have post this to the wrong area.. My sincere apologies! Thank you in advance! Jason You are a valid user"; echo "Your username is: {$_SERVER['PHP_AUTH_USER']}"; echo "Your password is: {$_SERVER['PHP_AUTH_PW']}"; } else { echo "You

Re: [PHP] JS alert that links to a file

2009-07-26 Thread Jim Lucas
Skip Evans wrote: LinuxManMikeC wrote: Okay, right, I remember this. But it has to be in it's own file, otherwise you get the 'headers already sent error', right? Is there any way around that? Any way to get it right at the end of where the file is created??? Thanks! Skip No, what

Re: [PHP] Correct code ?? PHP Basic pw athentication with mysql

2009-07-26 Thread Jim Lucas
Jason Guritz wrote: I cant seem to get this to work. Any ideas?? And If I have post this to the wrong area.. My sincere apologies! Thank you in advance! Jason Plus, you should really look at sanitizing those variables before you stuff them in an SQL statement! Run them through mysql_rea