[PHP] Monitoring system resources used by PHP

2007-08-20 Thread Evan Kaufman
I'm looking for a way to monitor the system resources (CPU, memory, Disk I/O, etc) used by the PHP engine on a linux machine. I can't monitor it by the usual means (top, etc), since it runs as part of the apache process(es). Does anyone know if a tool exists from Zend, or a module for Apache, to

Re: [PHP] Fast search

2006-05-17 Thread Evan Priestley
number of patterns. This particular implementation has some nice side-effects; uncomment the var_dump() line and note how 'pirate' and 'firm' have been optimized out of the tree in favor of 'pir' and 'fir'. Evan ?php $pattern = array( 'hat' ,'hut' ,'blue dog

Re: [PHP] Filter out MS Word 'quotes' for RSS

2006-04-26 Thread Evan Priestley
On Apr 26, 2006, at 5:45 AM, Kevin Davies wrote: Obviously I need to convert these on entry, or on output into RSS. Does anyone know of an easy way to do this, or is it a case of identifying each unusual character individually? These high-ascii characters have ord() values greater than

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Evan Priestley
Tell you what: write file_get_contents() in Javascript, and I'll write the rest of it. Evan On Apr 26, 2006, at 4:36 PM, Warren Vail wrote: This brings up a reoccurring issue for me and I'd be interested if anyone else has given it any thought. PHP appears to me to be incomplete unless

Re: [PHP] New Help with Javascript Navigation

2006-04-26 Thread Evan Priestley
of PHP functions either can't be implemented in Javascript (file_get_contents) or are fundamentally unsafe to implement in Javascript (mysql_query), so you'd end up with a language you couldn't do anything with. Evan On Apr 26, 2006, at 5:07 PM, Warren Vail wrote: Evan, Are you proposing

Re: [PHP] newbie question

2006-04-05 Thread Evan Priestley
On Apr 5, 2006, at 11:41 AM, Jay Blanchard wrote: p?php echo n12br($row_Recordset1['Writings_Text']); ?/p ^ Not sure if this is just a transcription error, but that should be an 'l' (ell), not a '1' (one) in nl2br. Evan -- PHP General Mailing List (http://www.php.net

Re: [PHP] protecting passwords when SSL is not available

2006-03-28 Thread Evan Priestley
This looks good, as far as I can tell. Good luck with implementation. Evan On Mar 28, 2006, at 2:51 AM, Satyam wrote: You are absolutely right! I love this list! I didn't realize that I was sending the session_id. Let's see if this works. On first serving the login page I create

Re: [PHP] protecting passwords when SSL is not available

2006-03-27 Thread Evan Priestley
over non-nonced password transmission. Evan [1] http://en.wikipedia.org/wiki/Nonce On Mar 27, 2006, at 8:30 AM, Satyam wrote: I know the answer to a secure site is SSL, but what if you are on a shared host, SSL is unavailable and you still want some sort of security? This is what I came

Re: [PHP] protecting passwords when SSL is not available

2006-03-27 Thread Evan Priestley
. I'm not sure if PHP will create an expired session ID for you; presumably it won't, but if you're writing your own session handler or implementing nonced password transmission in some other programming language, this might be a viable attack vector. Evan [1] It could even be the username

Re: [PHP] Letters in Loops

2006-03-23 Thread Evan Priestley
?php for( $ii = ord( 'A' ); ii = ord( 'Z' ); $ii++ ) { echo chr( $ii ); } ? On Mar 23, 2006, at 10:08 AM, Ben Miller wrote: In trying to make an alpha list, using the following: for($i=A;$i=Z;$i++) { echo $i; } Produces: A B C... X Y Z AA AB AC... AX AY AZ... all

Re: [PHP] gettting last assigned key in an array

2006-02-10 Thread Evan Priestley
function get_last_key( $array ) { // end( $array ); return key( $array ); return array_search( reset( array_reverse( array_values( array_flip( $array ) ) ) ) ,array_reverse( array_values( array_flip( $array ) ) ) ,true

Re: [PHP] Need help with for loop, pulling MySQL data, completely lost

2005-08-21 Thread Evan Priestley
run query1 } ? Excellent description of your problem, by the way; this one's tricky and definitely had me for a while when I first ran into it. Evan On Aug 21, 2005, at 7:24 AM, Dan Trainor wrote: Hello, all - As a pet project of mine, I've decided to write a bit of code

Re: [PHP] PHP4 : Installing LDAP without recompiling ?

2004-07-23 Thread Evan Nemerson
in the ext/ldap dir, then do the ./configure make make install dance. You should end up with a nice little ldap.so that you can load with dl() Very thanks for your help Regards, Ange. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net

Re: [PHP] SQL Case sensitivity

2004-06-24 Thread Evan Nemerson
appreciated! -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- The greatest mistake is to imagine that the human being is an autonomous individual. The secret freedom which you can supposedly enjoy under a despotic government is nonsense, because your thoughts are never entirely your own

Re: [PHP] Sort a text string by last word before separator

2004-06-24 Thread Evan Nemerson
, orange, peach rather than 2 or more elements such as fancy cars, big trucks, fast dangerous motorcycles, Is it even possible to accomplish this type sort on a string? Any advice, pointers, or help will be greatly appreciated, Tia, Andre -- Evan Nemerson [EMAIL PROTECTED] http

Re: [PHP] [OFF] - Transparency in DHTML layers?

2004-06-07 Thread Evan Nemerson
* Evan Nemerson [EMAIL PROTECTED] * * This should allow MSIE to properly display transparent PNGs. * * Thanks to: * http://www.alistapart.com/articles/pngopacity/ * http://webfx.eae.net/dhtml/pngbehavior/pngbehavior.html */ if ( /MSIE (5\.5)|[6789]/.test

Re: [PHP] bg execution

2004-05-22 Thread Evan Nemerson
server.php /dev/null 21 '); ? Thanks -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- If anyone can show me, and prove to me, that I am wrong in thought or deed, I will gladly change. I seek the truth, which never yet hurt anybody. It is only persistence in self-delusion

Re: [PHP] how to verify PHP has been installed with ldap?

2004-04-30 Thread Evan Nemerson
phpinfo() and look at the value for 'Server root', php will usually be loaded relative to that directory. Curt -- I used to think I was indecisive, but now I'm not so sure. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- To think is to differ

Re: [PHP] how to verify PHP has been installed with ldap?

2004-04-29 Thread Evan Nemerson
that as root?) Also, look in the 'apache' section from phpinfo() and look at the value for 'Server root', php will usually be loaded relative to that directory. Curt -- I used to think I was indecisive, but now I'm not so sure. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] OR

2004-04-25 Thread Evan Nemerson
On Sunday 25 April 2004 12:14 am, Aidan Lister wrote: if (cond || cond2) OR if (cond OR cond2) What do you use, and why? Doesn't matter- personal preference. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- There is a certain right by which we may deprive a man of life

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Evan Nemerson
around this without making the whole page a php script ? php.net/parse_str Thanks, Tim -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- The greatest mistake is to imagine that the human being is an autonomous individual. The secret freedom which you can supposedly enjoy under

Re: [PHP] SSI and query string variables to PHP

2004-04-25 Thread Evan Nemerson
everyone. Tim. At 01:22 AM 4/25/2004, Evan Nemerson wrote: On Saturday 24 April 2004 10:29 pm, Tim Traver wrote: Hi all, ok, this may be a dumb question, but I have a page that has server side includes that include a php script like this : !--#include virtual=schedule.php

Re: [PHP] substrings

2004-04-25 Thread Evan Nemerson
should be able to return a list like ($r,$g,$b) = fn(operands,$color) ; or so. TIA HAND :-D -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PDF Page Pulling

2004-04-07 Thread Evan Nemerson
to save that single page to it's own PDF file. Anyone know how to do this with free tools? Thanks. -- Adam Voigt [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com

[PHP] [ANNOUNCE] PHP extension for neural networks

2004-03-31 Thread Evan Nemerson
. I'm sending something over to pecl-dev right now, so hopefully the extension will be there sometime soon. Meanwhile, if you want to play with it, I'd love to get some feedback- positive or negative. Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http

Re: [PHP] Bison and Flex required to install PHP?

2004-03-30 Thread Evan Nemerson
On Tuesday 30 March 2004 06:08 pm, Terence wrote: checking lex output file root... ./configure: line 2425: lex: command not found configure: error: cannot find output from lex; giving up and from a search on Yahoo!: http://www.madpenguin.org/modules.php?op=modloadname=NS-Commentsfile=inde

Re: [PHP] How to send SMS

2004-03-28 Thread Evan Nemerson
to send sms with PHP and Mysql and mobil phone Nokia 5110? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- If anyone can show me, and prove to me, that I am wrong in thought

Re: [PHP] Storing encrypted data in a database with

2004-03-23 Thread Evan Nemerson
and then decode on the way back out. Any thoughts would be appreciated. TVMIA! -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- Only the other day, historically speaking, the 'holy inquisition' burned or silenced scientists. The discovery of the microscope and telescope, for instance

Re: [PHP] something like __URL__ (analogous to __FILE__)

2004-03-23 Thread Evan Nemerson
! Thank you. -m -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- There is a certain right by which we may deprive a man of life, but none by which we may deprive him of death. -Nietzsche -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] SQL Injection check (mysql)

2004-03-22 Thread Evan Nemerson
http://phpcommunity.org/ -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- To achieve adjustment and sanity and the conditions that follow from them, we must study the structural characteristics of this world first and, then only, build languages of similar structure, instead

Re: [PHP] Php mailer

2004-03-19 Thread Evan Nemerson
IMP and SquirrelMail are both nice. http://www.horde.org/imp/ http://www.squirrelmail.org On Friday 19 March 2004 03:40 pm, Mrs. Geeta Thanu wrote: Hi all, I am new to php and want to use php for our mailing program. At present we have servlet program what the users access it thru web

Re: [PHP] Pear Package...

2004-03-15 Thread Evan Nemerson
tried the include and require function but no luck. Why is that? What workaround do I need on this? FletchSOD -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- ...the whole idea of revenge and punishment is a childish daydream. Properly speaking, there is no such thing

Re: [PHP] file management system

2004-03-11 Thread Evan Nemerson
for example) - if all those feteares are not available in an existing system, we will add those, but if such a system do not exist, is there people interested in the same features to develop it with us or just helping with testing and feedback? Cheers++ -- Evan Nemerson [EMAIL PROTECTED] http

Re: [PHP] Problem with PDFlib

2004-03-11 Thread Evan Nemerson
, invoice.php); It will do that for any other line too if i comment that out (that is using pdf stuff) Any ideas? Thanks Teren -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- The public have an insatiable curiosity to know everything. Except what is worth knowing. Journalism

Re: [PHP] Dumb

2004-03-11 Thread Evan Nemerson
could do it re-compiling everything myself, but I kind of want to stick to the rpm style installation on this server if possible. Thanks for any help. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- Give a man fire, and he'll be warm for a day; set a man on fire, and he'll

Re: [PHP] Spelling without Aspell/Pspell

2004-03-10 Thread Evan Nemerson
a CLI- enchant probably does too. Wouldn't be too difficult to hack something together. In other words, something that will work on a base install of PHP4.2+. --- Justin French http://indent.com.au -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http

Re: [PHP] AI:Categorizer

2004-03-10 Thread Evan Nemerson
zwiewne ksztaty... http://www.opera.com 007 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP support C++?

2004-03-08 Thread Evan Nemerson
? Thanks, Kenneth -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php debug

2004-03-08 Thread Evan Nemerson
to get it down to as few lines of possible. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- If you would be a real seeker after truth, you must at least once in your life doubt, as far as possible, all things. -Rene Descartes -- PHP General Mailing List (http://www.php.net

Re: [PHP] Compiling PHP classes/libraries to objects

2004-03-08 Thread Evan Nemerson
On Monday 08 March 2004 04:44 pm, Tariq Murtaza wrote: Hi All Is there any way to use compiled form of libraries/classes in PHP. Comments please... http://turck-mmcache.sourceforge.net/ Regards, Tariq -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP

Re: [PHP] Apache/IE hangs with PHP

2004-02-26 Thread Evan Nemerson
works. What am I doing wrong? Is that a natural behaviour. Thanks for your help, Vincent -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- ...the whole idea of revenge and punishment is a childish daydream. Properly speaking, there is no such thing as revenge. Revenge is an act

Re: [PHP] Access DNS record

2004-02-26 Thread Evan Nemerson
Yahoo!? Yahoo! Mail SpamGuard - Read only the mail you want. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php and GpG

2004-02-23 Thread Evan Nemerson
/ref.exec [3] http://www.php.net/operators.execution -- Adam Bregenzer [EMAIL PROTECTED] http://adam.bregenzer.net/ -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: Re[2]: [PHP] Detecting Binaries

2004-02-23 Thread Evan Nemerson
techniques from natural language processing? May be overkill, though ;) -- Best regards, Richard Davey http://www.phpcommunity.org/wiki/296.html -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Finding out the local path to a file.

2004-02-23 Thread Evan Nemerson
, not the folder I'm requesting. Any ideas? dirname($_SERVER['SCRIPT_FILENAME'])? //Simon -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] saving form data

2004-02-23 Thread Evan Nemerson
, hotscripts, phpclasses, etc. Thanks! -- Charlie Fiskeaux II Media Designer Cre8tive Group cre8tivegroup.com 859/858-9054x29 cell: 859/608-9194 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Detecting Binaries

2004-02-23 Thread Evan Nemerson
'); continue 2; } ++$ckbin; } I know it looks kind of funky out of context, but it works really great. Nick Richard Davey wrote: Hello Evan, Monday, February 23, 2004, 8:57:43 PM, you wrote: It would be wise to check for characters from 0 to 31, if they appear

Re: [PHP] system / exec Question...

2004-02-23 Thread Evan Nemerson
San Tomas Expwy. Santa Clara, CA 95051-0953 408-565-7103 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Possible to write CRC/MD5 to the file?

2004-02-22 Thread Evan Nemerson
think) to have the PGP stuff in PHP comments, but i think you could do it... Sorry, I'm rambling. Just some thoughts. //Simon -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP PDFs...

2004-02-19 Thread Evan Nemerson
of another PDF, right? Russ Jones -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. -Benjamin Franklin -- PHP General Mailing List (http://www.php.net/) To unsubscribe

Re: [PHP] Can we make .exe programs with php?

2004-01-24 Thread Evan Nemerson
about, and the other half are writing code. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- ...the whole idea of revenge and punishment is a childish daydream. Properly speaking, there is no such thing as revenge. Revenge is an act which you want to commit when you are powerless

Re: [PHP] Threading PHP

2004-01-24 Thread Evan Nemerson
to wait for the process to complete. How might I be able to make some PHP code run as a thread that would serve these purposes? -Galen -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] Generating PDF

2003-12-31 Thread Evan Nemerson
happens when you use for filename (ie create the file in memory)? To me this example seems right, and the function calls seems alright according to the docummentation. Anybody else have seen this probleme befor ? Thanks Yann -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] programming the onclick() event in an anchor

2003-12-25 Thread Evan Nemerson
have experience doing this? Sample code would be greatly appreciated. http://www.webreference.com/js/column8/functions.html Peter -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- There is a certain right by which we may deprive a man of life, but none by which we may deprive

Re: [PHP] Re: basic set and read a cookie probs

2003-12-25 Thread Evan Nemerson
try to see the cookie with this: if ($HTTP_COOKIE_VARS[remailcookie]) { print (remail cookie exists); } else { print (no cookie); } This yeilds no cookie I have also tried $_COOKIE[] as well What am I doing wrong. Thanks in advance, Jack -- Evan

[PHP] URL regex

2003-12-19 Thread Evan Nemerson
Hey does anyone have a good regex laying around for URLs? ereg or preg, doesn't matter. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- Truth, like gold, is to be obtained not by its growth, but by washing away from it all that is not gold. -Leo Nikolaevich Tolstoy -- PHP

Re: [PHP] URL regex

2003-12-19 Thread Evan Nemerson
On Friday 19 December 2003 11:22 am, Evan Nemerson wrote: Hey does anyone have a good regex laying around for URLs? ereg or preg, doesn't matter. Okay finally found this: http://www.regexp.org/msg.php?uid=512 wow. Seriously- wow. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com

Re: [PHP] Manage link.

2003-12-18 Thread Evan Nemerson
of their print publication. For more information, you can go here: a href=\http://www.google.com\;url/a Thanks. -- Thanks, Vincent. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- Perl - the only language that looks the same before and after RSA encryption. -Keith Bostic -- PHP

Re: [PHP] Compiling...hellllp!

2003-12-11 Thread Evan Nemerson
the mmcache thing above. This will decrease the likelyhood of a snafu. Thanks, -Ryan http://Bestwebhosters.com -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- I am indeed amazed when I consider how weak my mind is and how prone to error. -Rene

Re: [PHP] PHP Math Question

2003-12-11 Thread Evan Nemerson
) { return (($x-1) % $n)+1; } Thanks y'all, Mike D Mike Dunlop AWN, Inc. // www.awn.com [ e ] [EMAIL PROTECTED] [ p ] 323.606.4237 -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- The superior man is satisfied and composed; the mean

Re: [PHP] php .htaccess autologin

2003-12-11 Thread Evan Nemerson
don't think there's a way to ask the browser to set that info through http. Maybe ask @ javascript forum? If you find a solution, I'd love to hear it... Since the .htaccess vars are stored in the browser, should I be looking at a PHP/JavaScritpt 1-2 punch? Thanks, Bob -- Evan Nemerson

Re: [PHP] Palm OS Processor

2003-12-11 Thread Evan Nemerson
or whatever else may come my way. Thanks! Stephen Craton -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- Truth, like gold, is to be obtained not by its growth, but by washing away from it all that is not gold. -Leo Nikolaevich Tolstoy -- PHP General Mailing List (http

Re: [PHP] (0t) SSH cp (copy help)

2003-12-11 Thread Evan Nemerson
SSH terminal, but it also features an SSH File Transfer client which will allow you to do what you want. openssh also included an sftp client. IIRC, there is a pretty good win32 port out there. And it's free Cheers, Pablo -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] Compiling...hellllp!

2003-12-10 Thread Evan Nemerson
-- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- I am indeed amazed when I consider how weak my mind is and how prone to error. -Rene Descartes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Php shell scripting

2003-12-10 Thread Evan Nemerson
://www.nittanytravel.com -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- They that can give up essential liberty to obtain a little temporary safety deserve neither liberty nor safety. -Benjamin Franklin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

Re: [PHP] Fatal Error: PDFlib error ...

2003-12-10 Thread Evan Nemerson
-- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- It is an unfortunate fact that every man who seeks to disseminate knowledge must contend not only against ignorance itself, but against false instruction as well. No sooner do we deem ourselves free from a particularly gross superstition

Re: [PHP] Can I request ?

2003-12-07 Thread Evan Nemerson
not really a good idea to ask someone to do it for you, unless you're going to pay them. If you want to pay someone, this is a great place to find experienced coders... Thnaks -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- I am indeed amazed when I consider how weak my mind

Re: [PHP] Random Numbers..

2003-12-07 Thread Evan Nemerson
on either how to write the above, or made the MySQL RAND() function, more random? um, yeah. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- A popular government, without popular information, or the means of acquiring it, is but a Prologue to a Farce or a Tragedy - or perhaps both

Re: [PHP] Comment alignment in config.m4

2003-12-05 Thread Evan Nemerson
that the comment is aligned: [ --enable-my_module Enable my_module support]) Thank you in advance. -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] xml parser und bestehende variablen - multilinguale app

2003-11-23 Thread Evan Nemerson
, Andy -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- If there is no higher reason--and there is none--then my own reason must be the supreme judge of my life. -Leo Nikolaevich Tolstoy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] On-the-fly encryption

2003-11-21 Thread Evan Nemerson
don't know what problem you're trying to solve, so I won't suggest an alternative course of action, but if you'd like to send your problem to the list, I (and probably others) would be happy to suggest alternatives. Thanks! -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en

Re: [PHP] XML Parsing....

2003-11-21 Thread Evan Nemerson
with it? Does the XML standard even allow multiple encodings??? Thanks, Scott -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- The greatest mistake is to imagine that the human being is an autonomous individual. The secret freedom which you can supposedly enjoy under

Re: [PHP] fighting with functions

2003-11-21 Thread Evan Nemerson
in my table some text just so I can find them when I have figured out how to create the right reference links. I am sorry that I need as much help with this. Sadly I have been at this for almost two weeks trying to solve it. Thanks, Sara -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com

Re: [PHP] mcrypt libraries?

2003-11-18 Thread Evan Nemerson
for a method of using the libmcrypt library without having to recompile php. Sorry for the confusion. Have you tried using phpize? -- Evan Nemerson [EMAIL PROTECTED] http://coeusgroup.com/en -- To think is to differ. -Clarence Darrow -- PHP General Mailing List (http://www.php.net

Re: [PHP] First test release of BTportal made!!!!

2003-11-12 Thread Evan Nemerson
don't think many (any?) people are interested. I sent this in private yesterday (?), but I suppose it's appropriate... As long as people put [ANNOUNCE] in the subject, most people seem to be pro-accouncements. http://marc.theaimsgroup.com/?l=php-generalm=106567228019195w=2 -- Evan Nemerson

Re: [PHP] Cannot bind to port 80

2003-11-12 Thread Evan Nemerson
, not apache. Thanks Teren -- Evan Nemerson [EMAIL PROTECTED] -- If anyone can show me, and prove to me, that I am wrong in thought or deed, I will gladly change. I seek the truth, which never yet hurt anybody. It is only persistence in self-delusion and ignorance which does harm. -Marcus

Re: [PHP] recursive acronym - PHP

2003-11-02 Thread Evan Nemerson
told me that it could be wroten as Pre Hypertxt Processor, thanks. -- Evan Nemerson [EMAIL PROTECTED] -- Businesses may come and go, but religion will last forever, for in no other endeavor does the consumer blame himself for product failure. -Harvard Lamphoon -- PHP General Mailing List

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
wondering how people are going to specify colour. I've even checked on HTML entities... Just trying to cover my bases before I send to internals@ Any other ideas? -- Evan Nemerson [EMAIL PROTECTED] -- A popular government, without popular information, or the means of acquiring

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Tuesday 28 October 2003 10:46 pm, [EMAIL PROTECTED] wrote: Evan Nemerson wrote: Is anyone aware of a way to get double quotes in the php.ini file? For instance, I'd like to be able to set error_prepend_string to font color=\#ff\ (which doesn't work). The only work-around I can think

Re: [PHP] Calendar Script

2003-10-29 Thread Evan Nemerson
döësn't pläy dícë. - Älbërt Ëínstëín -- Evan Nemerson [EMAIL PROTECTED] -- The people are the only sure reliance for preservation of our liberty. -Thomas Jefferson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
if it _is_ valid (which I really don't think is the case), it's not usable. I sincerely doubt any parsers will figure it out. - E - __ Do You Yahoo!? Yahoo! BB is Broadband by Yahoo! http://bb.yahoo.co.jp/ -- Evan Nemerson [EMAIL PROTECTED

Re: [PHP] quotes in php.ini

2003-10-29 Thread Evan Nemerson
On Wednesday 29 October 2003 12:30 am, - Edwin - wrote: On Tue, 28 Oct 2003 22:05:56 -0800 Evan Nemerson [EMAIL PROTECTED] wrote: On Tuesday 28 October 2003 11:59 pm, - Edwin - wrote: Hi, On Wed, 29 Oct 2003 02:10:49 -0500 Leif K-Brooks [EMAIL PROTECTED] wrote: Curt Zirzow

Re: [PHP] gzcompress/gzdeflate default compression level?

2003-10-29 Thread Evan Nemerson
value is -1, which zlib currently converts to 6. Thanks -- Evan Nemerson [EMAIL PROTECTED] -- To think is to differ. -Clarence Darrow -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Parsing a tab delimited log file

2003-10-29 Thread Evan Nemerson
-10-26 0:45:59 GMT 192.168.1.2 SMTP-Server.domain.com - Exchange-Server 10.0.0.50 [EMAIL PROTECTED] 1025 [EMAIL PROTECTED] 0 015188 1 2003-10-26 0:45:59 GMT 0 Version: 95.5329 - - [EMAIL PROTECTED] - -- Evan Nemerson [EMAIL PROTECTED

Re: [PHP] Favorite Online Language Guide

2003-10-29 Thread Evan Nemerson
/language.basic-syntax has a syntax guide On Wednesday 29 October 2003 01:40 pm, Robb Kerr wrote: What's your favorite online Php language guide? I'm a newbie and most interested in a syntax guide. Thanx, -- Evan Nemerson [EMAIL PROTECTED] -- If you would be a real seeker after truth, you must

Re: [PHP] SESSIONMANAGEMENT -- gute php mailing list / gute leute

2003-10-28 Thread Evan Nemerson
... es wird keine session übernommen. 3. Probiert habe ich bereits auch eine CLASS zu schaffen, diese ist jedoch nicht global erreichbar (nach Redirect) Ich bin für jeden Tipp dankbar, der mich weniger verzweifeln läßt. Tausend Dank ! Christoph Lockingen -- Evan Nemerson [EMAIL PROTECTED

Re: [PHP] Libs?

2003-10-28 Thread Evan Nemerson
~~~ Anytime four New Yorkers get into a cab together without arguing, a bank robbery has just taken place. -Johnny Carson. ~~~ -- Evan Nemerson [EMAIL PROTECTED

Re: [PHP] show_source

2003-10-28 Thread Evan Nemerson
_ See when your friends are online with MSN Messenger 6.0. Download it now FREE! http://msnmessenger-download.com -- Evan Nemerson [EMAIL PROTECTED] -- A popular government, without popular information, or the means of acquiring it, is but a Prologue to a Farce or a Tragedy

Re: [PHP] How do i mod php.ini to use an outside smtp?

2003-10-28 Thread Evan Nemerson
of a path?? - MD -- Evan Nemerson [EMAIL PROTECTED] -- There is a certain right by which we may deprive a man of life, but none by which we may deprive him of death. -Nietzsche -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Problem running ./configure php-4.3.3

2003-10-28 Thread Evan Nemerson
://it.yahoo.com/mail_it/foot/?http://it.mail.yahoo.com/ -- Evan Nemerson [EMAIL PROTECTED] -- A leader is the wave pushed ahead by the ship. -Leo Nikolaevich Tolstoy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
purposes. -- Evan Nemerson [EMAIL PROTECTED] -- I am indeed amazed when I consider how weak my mind is and how prone to error. -Rene Descartes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] quotes in php.ini

2003-10-28 Thread Evan Nemerson
On Tuesday 28 October 2003 11:29 pm, Rolf Brusletto wrote: Evan Nemerson wrote: Is anyone aware of a way to get double quotes in the php.ini file? For instance, I'd like to be able to set error_prepend_string to font color=\#ff\ (which doesn't work). The only work-around I can think

Re: [PHP] Session problem

2003-10-26 Thread Evan Nemerson
thing works well on live Linux server. I checked php.ini options such as session enable / register global etc - both r same. Please help me. Is it a problem with win2k server or did i miss out any thing in php.ini ? Regards Manisha -- Evan Nemerson [EMAIL PROTECTED] -- The people

Re: [PHP] Find the last friday of each month.

2003-10-26 Thread Evan Nemerson
. It keeps giving me October 10th. So, I scrapped it. Basically, I just want to show what the last friday of the month is, and if that date has already passed, show the last friday of the next month. How can I do that? -- Evan Nemerson [EMAIL PROTECTED] -- If you would be a real seeker after

Re: [PHP] Strange error in PHP 4.3.4RC2

2003-10-26 Thread Evan Nemerson
NEVER try to allocate such memory. I think the problem is related to some serialize/unserialize() code I am using (in fact, removing serialize/unserialize block makes the script work perfectly). Is there anything I can do to test _exactly_ where the script bombs? Ciao, Fabio -- Evan

Re: [PHP] XML/MySQL

2003-10-26 Thread Evan Nemerson
excuse me if I've missed something vital!) cheers ian ;-) -- Evan Nemerson [EMAIL PROTECTED] -- The people are the only sure reliance for preservation of our liberty. -Thomas Jefferson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] reading/parsing file names

2003-10-25 Thread Evan Nemerson
count only those files that end with .jpg ? Any help appreciated. -- Evan Nemerson [EMAIL PROTECTED] -- I am indeed amazed when I consider how weak my mind is and how prone to error. -Rene Descartes -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net

Re: [PHP] ADSI PHP

2003-10-25 Thread Evan Nemerson
-technics.com 100% FREE Internet Hosting! -- Evan Nemerson [EMAIL PROTECTED] -- ...the whole idea of revenge and punishment is a childish daydream. Properly speaking, there is no such thing as revenge. Revenge is an act which you want to commit when you are powerless and because you are powerless

Re: [PHP] Re: reading/parsing file names

2003-10-25 Thread Evan Nemerson
A little something I whipped up to avoid my zoology homework (I /really/ don't care that the damn sperm of nematodes are unusual because they lack a flagellum and acrosome). Conclusion: substr is faster than preg_match [tadpole tadpole]$ php -q ./bench.php substr: 3.6424000263214 PCRE:

Re: [PHP] limits on variable/classname length

2003-10-25 Thread Evan Nemerson
. Greg -- Evan Nemerson [EMAIL PROTECTED] -- The people are the only sure reliance for preservation of our liberty. -Thomas Jefferson -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

  1   2   3   4   >