RE: [PHP] Conditional popup driven from server-side

2008-04-08 Thread Arno Kuhl
Arno Kuhl <[EMAIL PROTECTED]> wrote: > I know popup windows are a client-side issue, but I can't figure how > to create and close a popup window from the server side only on > condition, otherwise display normal browser page. > > What I want is to accept a form, check the input, if there a

[PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Ryan S
Hey everyone, A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or just me. (My money is on the last one :p ) Here's what I am trying to do: In a form I have a listbox with the values 1-5, and under the listbox i have a with the id of "recips" (like so: ' + '' +

[PHP] Can someone tell me what a tilde means ?

2008-04-08 Thread Tony Collings
The humble tilde (~). I came across it the other day in some PHP code [code]~E_ERROR[/code] I'm curious, can't find any documentation on it. In math it refers to propostional logic, is it the same thing in PHP ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

Re: [PHP] objects stored in sessions

2008-04-08 Thread Julien Pauli
Just a customer of mine who said that he'll be running PHP 4 and 5 on the same server, and that he would share session data ;-) Bye. Julien.P 2008/4/7 Richard Heyes <[EMAIL PROTECTED]>: > Have you seen how PHP makes difference between private, protected and > > public > > attributes of an object

[PHP] joins issues again

2008-04-08 Thread Steven Macintyre
Hi all, I have the following SQL statement; SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID FROM sales LEFT JOIN IGuser ON sales.IGuid = IGuser.IGuid LEFT JOIN branch ON IGuser.branchID = branch.branchID LEFT JOIN company ON branch.com

[PHP] Could someone tell me what a tilde(~) in PHP does ?

2008-04-08 Thread Tony Collings
The humble tilde (~). I came across it the other day in some PHP code [code]~E_ERROR[/code] I'm curious, can't find any documentation on it. In math it refers to propostional logic, is it the same thing in PHP ? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://

Re: [PHP] included file var scope

2008-04-08 Thread Németh Zoltán
> >> In index.php rather than declaring vars like so... >> >> $var = 'value'; >> >> ...declare them in the $GLOBALS array like so... >> >> $GLOBALS['var'] = 'value'; >> >> $var is then in the global scope regardless of where it was set. >> >> -Stut >> > > That would work. However I'm looking for a

Re: [PHP] Can someone tell me what a tilde means ?

2008-04-08 Thread Németh Zoltán
> The humble tilde (~). I came across it the other day in some PHP code > [code]~E_ERROR[/code] > > I'm curious, can't find any documentation on it. In math it refers to > propostional logic, is it the same thing in PHP ? ~ $aNot Bits that are set in $a are not set, and vice versa. http:

[PHP] Using Googles SSO for GApps

2008-04-08 Thread Ian
Hi, I was wondering if anyone has set up SSO using googles api for apps. http://code.google.com/apis/apps/sso/saml_reference_implementation.html is their implementation guide but I was wondering if anyone has done it, and if I could have a peak at the code you used, mainly for the encrypting of th

Re: [PHP] Could someone tell me what a tilde(~) in PHP does ?

2008-04-08 Thread Mark J. Reed
On Tue, Apr 8, 2008 at 6:19 AM, Tony Collings <[EMAIL PROTECTED]> wrote: > The humble tilde (~). I came across it the other day in some PHP code > [code]~E_ERROR[/code] That comes from C, not postpositional math. It's bitwise negation. That is, the number 47 in binary is 110001, with leading 0'

RE: [PHP] Recommended PHP Editors?

2008-04-08 Thread Wolf
Editpad circa 95 Notepad VI Nedit Or the text editor that is the defauklt on ubuntu, which will do color specific coding for you once it knows the file type... Wolf -Original Message- From: Nitsan Bin-Nun <[EMAIL PROTECTED]> Sent: Tuesday, April 08, 2008 1:21 AM To: php-general@lists.php

[PHP] RES: [PHP-INSTALL] Can't enable use_trans_sid

2008-04-08 Thread Thiago Pojda
De: Keith Roberts [mailto:[EMAIL PROTECTED] >> Another question: >> >> Is there a way to make php use these fields [hidden sessid] instead of cookies for >> session control? I still want to let cookies enabled for other stuff, >> but as it's messing up with multiple sessions because of poor coo

[PHP] Re: Could someone tell me what a tilde(~) in PHP does ?

2008-04-08 Thread Tony Collings
Ah! excellent. Thanks for that. - e. [EMAIL PROTECTED] w. www.tonycollings.com skype. supert3d United States of America t. 1-203-599-1604 m. 1-203-788-7787 United Kingdom t. 020 8144 2453 m. 07763803980 -Original Message- F

Re: [PHP] Could someone tell me what a tilde(~) in PHP does ?

2008-04-08 Thread Mark J. Reed
On Tue, Apr 8, 2008 at 8:50 AM, Mark J. Reed <[EMAIL PROTECTED]> wrote: > That is, the number 47 in binary is 110001, " ... or 10, if you want to be technical. 110001 is 49. :) "The important thing is to understand what you're doing, rather than to get the right answer." --Tom Lehrer -- Mar

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Mark Weaver
Ryan S wrote: Hey everyone, A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or just me. (My money is on the last one :p ) Here's what I am trying to do: In a form I have a listbox with the values 1-5, and under the listbox i have a with the id of "recips" (like

[PHP] New Ajax search component

2008-04-08 Thread Jeremy O'Connor
Hi I have written a new component that can be included in your form, and allows the user to search a data source by entering the search term(s) and using Ajax to return a list of results in a dropdown control, from which the user can select the desired item. It uses the prototype JavaScript lib

Re: [PHP] joins issues again

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 7:28 AM, Steven Macintyre <[EMAIL PROTECTED]> wrote: > Hi all, > > I have the following SQL statement; > > SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID > FROM sales > LEFT JOIN IGuser ON sales.IGuid = IGuser.IGuid > L

Re: [PHP] Can someone tell me what a tilde means ?

2008-04-08 Thread Andrew Ballard
2008/4/8 Németh Zoltán <[EMAIL PROTECTED]>: > > The humble tilde (~). I came across it the other day in some PHP code > > [code]~E_ERROR[/code] > > > > I'm curious, can't find any documentation on it. In math it refers to > > propostional logic, is it the same thing in PHP ? > > ~ $aNot

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 9:30 AM, Mark Weaver <[EMAIL PROTECTED]> wrote: > Ryan S wrote: > > > Hey everyone, > > > > A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or > just me. > > > > (My money is on the last one :p ) > > > > > > Here's what I am trying to do: > > In a

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Peter Ford
Mark Weaver wrote: Ryan S wrote: Hey everyone, A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or just me. (My money is on the last one :p ) Here's what I am trying to do: In a form I have a listbox with the values 1-5, and under the listbox i have a with the

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 1:21 AM, Nitsan Bin-Nun <[EMAIL PROTECTED]> wrote: > Hi, > I'm working with serveral PHP editors, each has it own restrictions. > So umm, What editors do you recommend and what special functions and > dis/adventages they have (maybe im overkilling my own back). RTFA:

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 6:17 AM, Ryan S <[EMAIL PROTECTED]> wrote: > Hey everyone, > > A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or > just me. > > (My money is on the last one :p ) [snip!] Ryan, would it be possible for you to send an actual link to the page

RE: [PHP] New Ajax search component

2008-04-08 Thread Jay Blanchard
[snip] I have written a new component that can be included in your form, and allows the user to search a data source by entering the search term(s) and using Ajax to return a list of results in a dropdown control, from which the user can select the desired item. It uses the prototype JavaScript

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Jochem Maas
Robert Cummings schreef: On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: Hi, I'm working with serveral PHP editors, each has it own restrictions. So umm, What editors do you recommend and what special functions and dis/adventages they have (maybe im overkilling my own back). This come

[PHP] LOGIN Endless Loop Problem - Newbie

2008-04-08 Thread revDAVE
Hi folks - Newbie Question here... I'm using php with filemaker and api from http://fmwebschool.com I am asking them also for help (nothing yet) - but I thought that here would also be a great place to ask: Thread listed here for easier reading... http://fmwebschool.com/frm/index.php?topic=2234.0

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > Robert Cummings schreef: > > > > This comes up almost once a week. Read the archives. > > > > indeed, although the proper answer never comes up. the proper answer is > ofcourse 'me' - as in I'm a highly recommended php edit

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Robert Cummings
On Tue, 2008-04-08 at 11:02 -0400, Andrew Ballard wrote: > On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > > Robert Cummings schreef: > > > > > On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: > > > > > > > Hi, > > > > I'm working with serveral PHP editors, each h

Re: [PHP] joins issues again

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 7:28 AM, Steven Macintyre <[EMAIL PROTECTED]> wrote: > Hi all, > > I have the following SQL statement; > > SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID > FROM sales > LEFT JOIN IGuser ON sales.IGuid = IGuser.IGuid > L

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > Robert Cummings schreef: > > > On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: > > > > > Hi, > > > I'm working with serveral PHP editors, each has it own restrictions. > > > So umm, What editors do you recommend and

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Jason Pruim
On Apr 8, 2008, at 11:02 AM, Andrew Ballard wrote: On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: Robert Cummings schreef: On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: Hi, I'm working with serveral PHP editors, each has it own restrictions. So umm, Wh

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 11:42 AM, Jason Pruim <[EMAIL PROTECTED]> wrote: > On Apr 8, 2008, at 11:02 AM, Andrew Ballard wrote: > > > On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: > > > > > indeed, although the proper answer never comes up. the proper answer is > > > ofcours

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 11:46 AM, Andrew Ballard <[EMAIL PROTECTED]> wrote: > > No thanks. I already have enough software installed on my computer > that tries to think for itself thanks go M$. I don't need anymore > artificial UN-intelligence. Why I'm A Linux User - Reason #3127: No God da

Re: [PHP] joins issues again

2008-04-08 Thread Wolf
Steven Macintyre <[EMAIL PROTECTED]> wrote: > Hi all, > > I have the following SQL statement; > > SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID > FROM sales > LEFT JOIN IGuser ON sales.IGuid = IGuser.IGuid > LEFT JOIN branch ON IGuser.branc

Re: [PHP] New Ajax search component

2008-04-08 Thread Jeremy O'Connor
""Jay Blanchard"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Cool...I'd have the 'submit' button hidden until results were returned > so as to avoid user confusion. Yes, something to add in a later version of the component. -- Jeremy O'Connor -- PHP General Mailing List

Re: [PHP] joins issues again

2008-04-08 Thread Mark J. Reed
On Tue, Apr 8, 2008 at 7:28 AM, Steven Macintyre <[EMAIL PROTECTED]> wrote: > I have the following SQL statement; ... and this relates to PHP how? > SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID That doesn't make sense. You're selecting a group function (COUNT)

[PHP] limit mail() function

2008-04-08 Thread Jordi Moles
hello everyone, first of all... i'm sorry if this has been asked like a million times before... but i've been looking for info about this and found nothing so far. anyway I've got a server with apache2 and postfix and php5 providing hosting to some clients. I've got this big problem abo

Re: [PHP] New Ajax search component

2008-04-08 Thread Nathan Nobbe
On Tue, Apr 8, 2008 at 7:41 AM, Jeremy O'Connor <[EMAIL PROTECTED]> wrote: > Hi > > I have written a new component that can be included in your form, and > allows > the user to search a data source by entering the search term(s) and using > Ajax to return a list of results in a dropdown control, f

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Jim Lucas
Ryan S wrote: Hey everyone, A bit of a puzzle here, dont know if this is a JS problem or PHP or FF or just me. (My money is on the last one :p ) Here's what I am trying to do: In a form I have a listbox with the values 1-5, and under the listbox i have a with the id of "recips" (like

Re: [PHP] New Ajax search component

2008-04-08 Thread Eric Butera
On Tue, Apr 8, 2008 at 12:37 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > they pretty much have that in the scriptacuous lib under Ajax.Autocompleter, > atm > > http://wiki.script.aculo.us/scriptaculous/show/Ajax.Autocompleter > http://demo.script.aculo.us/ajax/autocompleter > http://demo.scr

[PHP] books for php

2008-04-08 Thread news.php.net
Which are the good books for learning php? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] books for php

2008-04-08 Thread Daniel Brown
On Sun, Apr 6, 2008 at 11:28 AM, news.php.net <[EMAIL PROTECTED]> wrote: > Which are the good books for learning php? Try to choose one that has pages, some (if not all) of those should contain words forming sentences, and particularly those focused on the PHP programming language. http:/

Re: [PHP] books for php

2008-04-08 Thread Jason Pruim
On Apr 8, 2008, at 1:10 PM, Daniel Brown wrote: On Sun, Apr 6, 2008 at 11:28 AM, news.php.net <[EMAIL PROTECTED]> wrote: Which are the good books for learning php? Try to choose one that has pages, some (if not all) of those should contain words forming sentences, and particularly those f

Re: [PHP] books for php

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 1:26 PM, Jason Pruim <[EMAIL PROTECTED]> wrote: > > You mean that books are supposed to have stuff other then pictures? Well > hot damn Learn something new everyday! Some programming books, such as guides to Windows source code, have pictures. http://www.pi

Re: [PHP] books for php

2008-04-08 Thread Wolf
Daniel Brown <[EMAIL PROTECTED]> wrote: > On Tue, Apr 8, 2008 at 1:26 PM, Jason Pruim <[EMAIL PROTECTED]> wrote: > > > > You mean that books are supposed to have stuff other then pictures? Well > > hot damn Learn something new everyday! > > Some programming books, such as guides to

[Fwd: Re: [PHP] Recommended PHP Editors?]

2008-04-08 Thread Zoltán Németh
sorry, forgot to include the list Jason Pruim írta: On Apr 8, 2008, at 11:02 AM, Andrew Ballard wrote: On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: Robert Cummings schreef: On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: Hi, I'm working with serveral PH

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Jason Pruim
On Apr 8, 2008, at 1:48 PM, Zoltán Németh wrote: Jason Pruim írta: On Apr 8, 2008, at 11:02 AM, Andrew Ballard wrote: On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: Robert Cummings schreef: On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote: Hi, I'm working

Re: [PHP] Recommended PHP Editors?

2008-04-08 Thread Zoltán Németh
Jason Pruim írta: On Apr 8, 2008, at 1:48 PM, Zoltán Németh wrote: Jason Pruim írta: On Apr 8, 2008, at 11:02 AM, Andrew Ballard wrote: On Tue, Apr 8, 2008 at 10:56 AM, Jochem Maas <[EMAIL PROTECTED]> wrote: Robert Cummings schreef: On Tue, 2008-04-08 at 07:21 +0200, Nitsan Bin-Nun wrote:

Re: [PHP] limit mail() function

2008-04-08 Thread Per Jessen
Jordi Moles wrote: > I've got a server with apache2 and postfix and php5 providing hosting > to some clients. I've got this big problem about clients sending spam > massively, either consciously or because they website have been > hacked. The main way to spam is by using the "mail()" function. > S

Re: [PHP] New Ajax search component

2008-04-08 Thread Nathan Nobbe
On Tue, Apr 8, 2008 at 10:50 AM, Eric Butera <[EMAIL PROTECTED]> wrote: > On Tue, Apr 8, 2008 at 12:37 PM, Nathan Nobbe <[EMAIL PROTECTED]> > wrote: > > they pretty much have that in the scriptacuous lib under > Ajax.Autocompleter, > > atm > > > > http://wiki.script.aculo.us/scriptaculous/show/

[PHP] Between editors and books.....

2008-04-08 Thread Jay Blanchard
I have raised a whole new generation of curmudgeons! *sniff* -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] joins issues again

2008-04-08 Thread Jim Lucas
Steven Macintyre wrote: Hi all, I have the following SQL statement; SELECT count( salesID ) AS count, branch_name, company_name, branch.branchID FROM sales LEFT JOIN IGuser ON sales.IGuid = IGuser.IGuid LEFT JOIN branch ON IGuser.branchID = branch.branchID LEFT

Re: [PHP] limit mail() function

2008-04-08 Thread Greg Bowser
As far as I know, there's no way you can do this via PHP. PHP doesn't "know" about users on the system. Generally, PHP is run as an apache module, and thus the scripts are run as the user apache is running as. So to start with, you'd probably need to be running a Fast CGI + SuExec setup or somet

Re: [PHP] Between editors and books.....

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 2:13 PM, Jay Blanchard <[EMAIL PROTECTED]> wrote: > I have raised a whole new generation of curmudgeons! *sniff* /me golf-claps. -- Ask me about: Dedicated servers starting @ $59.99/mo., VPS starting @ $19.99/mo., and shared hosting starting @ $2.50/mo. Unmanaged,

Re: [PHP] New Ajax search component

2008-04-08 Thread Eric Butera
On Tue, Apr 8, 2008 at 2:10 PM, Nathan Nobbe <[EMAIL PROTECTED]> wrote: > btw; planning on digging into extJs once i get a chance to take a piss :O I've heard a lot of good things about that. Let me know what you think, after you piss of course. =) -- PHP General Mailing List (http://www.php.ne

Re: [PHP] limit mail() function

2008-04-08 Thread Per Jessen
Greg Bowser wrote: > I'm not sure how, or if there is a way to do this in postfix. The > mail() function calls the sendmail binary, so one sort of hackish way > might be to move this binary and write a wrapper script that keeps > track of per-user rate limits, and then invokes the real sendmail >

Re: [PHP] Between editors and books.....

2008-04-08 Thread Robert Cummings
On Tue, 2008-04-08 at 14:17 -0400, Daniel Brown wrote: > On Tue, Apr 8, 2008 at 2:13 PM, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > I have raised a whole new generation of curmudgeons! *sniff* > > /me golf-claps. /me golf-claps with one hand Cheers, Rob. -- http://www.interjinn.com A

Re: [PHP] Between editors and books.....

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 2:38 PM, Robert Cummings <[EMAIL PROTECTED]> wrote: > > On Tue, 2008-04-08 at 14:17 -0400, Daniel Brown wrote: > > On Tue, Apr 8, 2008 at 2:13 PM, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > > I have raised a whole new generation of curmudgeons! *sniff* > > > >

Re: [PHP] PHP gives session error on remote server, but not local test machine [SOLVED]

2008-04-08 Thread Stut
On 8 Apr 2008, at 04:15, Dave M G wrote: PHP list, Solving my own issue: It turns out that some PHP scripts had an extra carriage return character at the end of the file. Once I removed these, the problem went away. Strange that it only happened on some servers, not others, but there it

RE: [PHP] Between editors and books.....

2008-04-08 Thread Jay Blanchard
[snip] On Tue, Apr 8, 2008 at 2:38 PM, Robert Cummings <[EMAIL PROTECTED]> wrote: > > On Tue, 2008-04-08 at 14:17 -0400, Daniel Brown wrote: > > On Tue, Apr 8, 2008 at 2:13 PM, Jay Blanchard <[EMAIL PROTECTED]> wrote: > > > I have raised a whole new generation of curmudgeons! *sniff* > > >

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Ryan S
Hi Guys, Thanks for responding, will try to answer everyone in the same order. Mark W: Thanks for replying! > Since I'm relatively new to PHP I could be off on this, but I'd say yes, > $_REQUEST is wrong. I would think you'd want to use $_POST to receive > the incoming values from a form. $_

Re: [PHP] limit mail() function

2008-04-08 Thread Greg Bowser
>Pardon me, but that's one kludgy idea Hence my use of the term hackish. But really, is isn't all that kludgy. An software solution that implements this natively would have to keep track of the stats somehow; undoubtely via some sort of stats file. So the real difference is that two processes are

[PHP] Common PHP functions benchmarks

2008-04-08 Thread Jason Knight
I've been running some benchmarks on popular PHP functions. I would like to get some input on them from the community. So far I have run tests on Arrays and PHP5's SPL ArrayObject, as well as loops and some networking functions. Here is a link to the code used for the benchmarks. http://www.syn

Re: [PHP] Common PHP functions benchmarks

2008-04-08 Thread Nathan Nobbe
On Tue, Apr 8, 2008 at 1:52 PM, Jason Knight <[EMAIL PROTECTED]> wrote: > I've been running some benchmarks on popular PHP functions. I would like > to > get some input on them from the community. So far I have run tests on > Arrays and PHP5's SPL ArrayObject, as well as loops and some networkin

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 3:51 PM, Ryan S <[EMAIL PROTECTED]> wrote: > Hi Guys, [snip] > Andrew: > Thanks for replying! > [snip] > > Also, FWIW, I doubt it has anything to do with your problem but you > > are assigning the same value for ID each time through the loop. The ID > > attribute is supp

Re: [PHP] limit mail() function

2008-04-08 Thread Andrew Ballard
On Tue, Apr 8, 2008 at 3:51 PM, Greg Bowser <[EMAIL PROTECTED]> wrote: > >postfix has rate-limitation facilities you can use for this > > I'm aware of several configuration directives that limit rate, none of > which directly limit the send rate local users. Perhaps some kludgly > or elusive t

Re: [PHP] New Ajax search component

2008-04-08 Thread tedd
As long as we're raining on parades ;) http://developer.yahoo.com/yui/autocomplete/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php And to continue: http://www.webbytedd.com/c/ajax-pop-down/ Cheers, tedd -- --- http://sperling.com

Re: [PHP] New Ajax search component

2008-04-08 Thread Nathan Nobbe
On Tue, Apr 8, 2008 at 3:53 PM, tedd <[EMAIL PROTECTED]> wrote: > As long as we're raining on parades ;) > > > > http://developer.yahoo.com/yui/autocomplete/ > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, visit: http://www.php.net/unsub.php > > > > And to continu

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Ryan S
Hey! Thanks Andrew, will look into those points that you sent me. First thing to change will be the DOCTYPE I think, as i didht type that but must have copied code into a pre-made page... Cheers! R - Original Message From: Andrew Ballard <[EMAIL PROTECTED]> To: PHP General list Sent:

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Daniel Brown
On Tue, Apr 8, 2008 at 6:20 PM, Ryan S <[EMAIL PROTECTED]> wrote: > Hey! > Thanks Andrew, will look into those points that you sent me. > > First thing to change will be the DOCTYPE I think, as i didht type that but > must have copied code into a pre-made page... One thing I learned when sc

Re: [PHP] New Ajax search component

2008-04-08 Thread tedd
At 4:17 PM -0600 4/8/08, Nathan Nobbe wrote: On Tue, Apr 8, 2008 at 3:53 PM, tedd <[EMAIL PROTECTED]> wrote: As long as we're raining on parades ;) http://developer.yahoo.com/yui/autocomplete/ -- PHP General Mailing List

Re: [PHP] New Ajax search component

2008-04-08 Thread Nathan Nobbe
On Tue, Apr 8, 2008 at 5:12 PM, tedd <[EMAIL PROTECTED]> wrote: > At 4:17 PM -0600 4/8/08, Nathan Nobbe wrote: > > > On Tue, Apr 8, 2008 at 3:53 PM, tedd < > > [EMAIL PROTECTED]> wrote: > > > > As long as we're raining on parades ;) > > > >

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Ryan S
Hello Bitter, (so is that Bitter Andrew or Bitter Brown? :-) ) Thanks for the little titbit of request code, have saved it and will certainly use it. Lets see how the next version is, they promised to make the new IE stick closer to the standards. Cheers! R On Tue, Apr 8, 2008 at 6:20 PM,

[PHP] require_once dying silently

2008-04-08 Thread Richard S. Crawford
Hi, everyone. This one's been driving me bonkers for an hour now. Anyone have any idea why require_once would be dying silently in the script below? $CFG->dirroot = "/home/rcrawford/public_html/tanktrunk/tanktrunk"; $CFG->dataroot = $CFG->dirroot.'/moodle

Re: [PHP] dynamic boxes problem... JS and PHP

2008-04-08 Thread Ryan S
Hello Bitter, (so is that Bitter Andrew or Bitter Brown? :-) ) Thanks for the little titbit of request code, have saved it and will certainly use it. Lets see how the next version is, they promised to make the new IE stick closer to the standards. Cheers! R On Tue, Apr 8, 2008 at 6:20 PM, R

Re: [PHP] require_once dying silently

2008-04-08 Thread Chris
Richard S. Crawford wrote: Hi, everyone. This one's been driving me bonkers for an hour now. Anyone have any idea why require_once would be dying silently in the script below? $CFG->dirroot = "/home/rcrawford/public_html/tanktrunk/tanktrunk"; $CFG->datar

Re: [PHP] require_once dying silently

2008-04-08 Thread Greg Bowser
Is it possible that something is "going wrong" between the definition of $CFG->foo and when you require that could cause $CFG->dirroot to be null? Then it would point to /lib/setup.php, which definitely shouldn't exist and should thus throw an error, but maybe it's worth looking into. That woul

Re: [PHP] require_once dying silently

2008-04-08 Thread Casey
On Tue, Apr 8, 2008 at 8:27 PM, Greg Bowser <[EMAIL PROTECTED]> wrote: > > > Is it possible that something is "going wrong" between the definition > of $CFG->foo and when you require that could cause $CFG->dirroot to be > null? Then it would point to /lib/setup.php, which definitely > shouldn'

Re: [PHP] books for php

2008-04-08 Thread Casey
On Tue, Apr 8, 2008 at 10:29 AM, Daniel Brown <[EMAIL PROTECTED]> wrote: > On Tue, Apr 8, 2008 at 1:26 PM, Jason Pruim <[EMAIL PROTECTED]> wrote: > > > > You mean that books are supposed to have stuff other then pictures? Well > > hot damn Learn something new everyday! > > Some programm

[PHP] Check XMLReader enable

2008-04-08 Thread hce
Hi, How can I check if the XMLReader is enabled or not in php? Also, how to config the php to support SOAP and WSDL? Thank you. Jim -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Setting php server

2008-04-08 Thread hce
Hi, I am setting a lighty and php server in my local machine FC 6 for testing my php source code. Both index.html and index.php have been set in lighty. If I have an index.html on the server, the http response was fine. But, if I set an index.php on the server, the browser got a blank page, there

Re: [PHP] Setting php server

2008-04-08 Thread Iñigo Medina García
hce wrote: > Hi, > > I am setting a lighty and php server in my local machine FC 6 for > testing my php source code. Both index.html and index.php have been > set in lighty. If I have an index.html on the server, the http > response was fine. But, if I set an index.php on the server, the > browser

Re: [PHP] New Ajax search component

2008-04-08 Thread Jeremy O'Connor
""Nathan Nobbe"" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Tue, Apr 8, 2008 at 7:41 AM, Jeremy O'Connor <[EMAIL PROTECTED]> > wrote: > they pretty much have that in the scriptacuous lib under > Ajax.Autocompleter, > atm > OK, but my control only does the Ajax call when th

Re: [PHP] require_once dying silently

2008-04-08 Thread Zoltán Németh
Richard S. Crawford írta: Hi, everyone. This one's been driving me bonkers for an hour now. Anyone have any idea why require_once would be dying silently in the script below? $CFG->dirroot = "/home/rcrawford/public_html/tanktrunk/tanktrunk"; $CFG->dataro

[PHP] How to create combo-boxes/list boxes connected with MS SQL Server database in PHP scripts

2008-04-08 Thread punhsr
Sir I want to create combo-boxes/list-boxes from a table which is available in MS-Sql server database. I have established connectivity with ms-sql server database using odbc. how can i create combo-boxes in my php scripts? waiting for an early reply. With regards Pardeep Singh Scientist-C NIC H