[PHP] kdevelop?

2001-08-30 Thread Daniel Adams
Is there like a syntax hilighting plugin for kdevelop or something? - Dan -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] \n

2001-08-24 Thread Daniel Adams
are you on windows or *nix? paste more code On Fri, 24 Aug 2001, Jeremy Morano wrote: Sorry to bother you with what probably seems like a useless question but why is this not skipping a line? echo $team \n ; Its in a while loop and the output is: Bears Giants Jets etc --

[PHP] generate documenation?

2001-08-21 Thread Daniel Adams
Anyone know what they use on php.net to generate the documentation? Can you do stuff that big with doxygen? - Dan -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list

Re: [PHP] Free PHP runtime Accelerator for Linux available

2001-08-20 Thread Daniel Adams
Is this different from the zend optimizer? - Dan On Tue, 21 Aug 2001, PHP Accelerator wrote: All, After a frantic week of development and digging into the bowels of the PHP scripting engine, I've produced an initial version of a run time accelerator. This works for Linux only, and

Re: [PHP] Sending alots of mail

2001-08-16 Thread Daniel Adams
I did something like that once. Mine sent only about a few hundred at a time and it was still quite a strain on the system because you have a TON of sendmail processes started and running at the same time. Just be aware of the possible system load. - dan On Thu, 16 Aug 2001, Jimmy

Re: SV: [PHP] Sending alots of mail

2001-08-16 Thread Daniel Adams
qmail. I've heard that qmail does things better than sendmail? /Jimmy - Original Message - From: Daniel Adams [EMAIL PROTECTED] To: Jimmy Bäckström [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, August 16, 2001 6:21 PM Subject: Re: [PHP] Sending alots of mail I did

Re: SV: [PHP] Sending alots of mail

2001-08-16 Thread Daniel Adams
Actually I remember that I did have the same problem. I had to use sleep() also even though I was only sending a few hundred rather than a few thousand. - Dan On Thu, 16 Aug 2001, PHP List wrote: Thats interesting. I tried to do the same thing with 5000 emails using sendmail, and I

RE: [PHP] bold current menu item

2001-08-16 Thread Daniel Adams
I suppose you could check the $GLOBALS[REQUEST_URI] variable with a regular expression or something. - Dan On Thu, 16 Aug 2001, Jason Dulberg wrote: The menu that's taken from the database is basically a list of links like this $s=select * FROM molds m, prodlookup p WHERE p.cid=$cid

RE: [PHP] bold current menu item (fwd)

2001-08-16 Thread Daniel Adams
Another way you could do it would be to check each item in the $GLOBALS[argv] variable (or $argv). - Dan -- -- Forwarded message -- Date: Thu, 16 Aug 2001 14:18:09 -0400 (EDT) From: Daniel Adams [EMAIL PROTECTED] To: Jason Dulberg [EMAIL PROTECTED] Cc: [EMAIL PROTECTED

Re: [PHP] Loop though email list

2001-08-14 Thread Daniel Adams
for a file i would do something like this: ? $file = file (addressfile.txt); foreach ($file as $address) mail ($address, subject, message, From: [EMAIL PROTECTED]); ? for the mysql db it would be something like this (this is probably a little off): ? $mysql = mysql_pconnect ($server,

Re: [PHP] Loop error?

2001-08-14 Thread Daniel Adams
because you have a semicolon after while ($count $i) so that it never increments $i. :-) oops On Tue, 14 Aug 2001, PHP List wrote: Hi, Can anyone tell me why this is a never ending loop? $i=0; $count = 1; while ($count $i); { echo $i br; $i++; } Chris -- -- PHP

Re: [PHP] something like SSI ?

2001-08-14 Thread Daniel Adams
check out the require, include, and require_once functions in the manual on php.net - Dan :-) On Wed, 15 Aug 2001, Martin wrote: Ok, this may seem like a dumb newbie question... Is there an function like ASP's Server Side Include in PHP ? Or what is best to use instead, fread ?

[PHP] autoconf bugs

2001-08-13 Thread Daniel Adams
Anyone know why I get this when I run buildconf for php or phpgtk on redhat 7.1? I have autoconf 2.13 autoconf: Undefined macros: ***BUG in Autoconf--please report*** AC_LANG_PUSH ***BUG in Autoconf--please report*** AC_LANG_POP ***BUG in Autoconf--please report*** AC_LANG_PUSH ***BUG in

[PHP] Re: [PHP-GTK] autoconf bugs

2001-08-13 Thread Daniel Adams
1.4b On Mon, 13 Aug 2001, Markus Fischer wrote: What libtool version are you using ? libtool --version - Markus On Mon, Aug 13, 2001 at 12:57:42PM -0400, Daniel Adams wrote : Anyone know why I get this when I run buildconf for php or phpgtk on redhat 7.1? I have autoconf 2.13

Re: [PHP] How give a 'timed' online quiz?

2001-08-13 Thread Daniel Adams
Sounds like you could use javascript rather than php for this one. Or you could try using an http refresh after a certain number of seconds. - Dan On Mon, 13 Aug 2001, Tom Henry wrote: Hi Could someone steer me in the right direction for this one - I can't seem to see the forest

[PHP] cgi and module?

2001-08-13 Thread Daniel Adams
Is there any way to use the --with-apxs and make the cgi version in the make? - Dan -- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL