[PHP] Re: Test

2012-02-20 Thread Jim Giner
meaning what? Jay Blanchard jay.blanch...@sigmaphinothing.org wrote in message news:4f4297a6.3000...@sigmaphinothing.org... Does this work? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Test

2012-02-20 Thread Al
Doesn't appear to meet DMARC standards. On 2/20/2012 1:57 PM, Jay Blanchard wrote: Does this work? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Test [don't read]

2010-06-07 Thread Jo�o C�ndido de Souza Neto
I couldn´t resist. tedd tedd.sperl...@gmail.com escreveu na mensagem news:p0624080cc832e662f...@[192.168.1.102]... -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: Test [don't read]

2010-06-07 Thread Jo�o C�ndido de Souza Neto
I couldn´t resist. tedd tedd.sperl...@gmail.com escreveu na mensagem news:p0624080cc832e662f...@[192.168.1.102]... -- --- http://sperling.com http://ancientstones.com http://earthstones.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: Test [don't read]

2010-06-07 Thread Ahmed Mohsen
On 6/7/2010 9:15 PM, João Cândido de Souza Neto wrote: I couldn´t resist. teddtedd.sperl...@gmail.com escreveu na mensagem news:p0624080cc832e662f...@[192.168.1.102]... -- --- http://sperling.com http://ancientstones.com http://earthstones.com me too ;) -- PHP General Mailing

[PHP] Re: Test

2006-10-04 Thread David Robley
Sheena Mullally wrote: test Sorry, you failed. Cheers -- David Robley This tag is devoid of any humor. Today is Boomtime, the 58th day of Bureaucracy in the YOLD 3172. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: test for illegal characters and consequences

2006-04-04 Thread Al
Angelo Zanetti wrote: Hi guys. Ive developed a site and now I've come to the stage where I need to test each textfield on each form for illegal characters that have been inputted. I would like to know from some of you how you go about it? Do you use a regular expression and test each

Re: [PHP] Re: test for illegal characters and consequences

2006-04-04 Thread Angelo Zanetti
Al wrote: Angelo Zanetti wrote: Hi guys. Ive developed a site and now I've come to the stage where I need to test each textfield on each form for illegal characters that have been inputted. I would like to know from some of you how you go about it? Do you use a regular expression and

Re: [PHP] Re: test for illegal characters and consequences

2006-04-04 Thread Eduardo Raúl Galván Sánchez
You can compare each character against the standard character set by means of regular expressions. Angelo Zanetti escribió: Al wrote: Angelo Zanetti wrote: Hi guys. Ive developed a site and now I've come to the stage where I need to test each textfield on each form for illegal

[PHP] Re: test security of code

2006-03-08 Thread Barry
Gregory Machin wrote: Hi Is there an application that can pass source code and report potential security problem and or the live site ? Many thanks -- Gregory Machin [EMAIL PROTECTED] [EMAIL PROTECTED] www.linuxpro.co.za www.exponent.co.za Web Hosting Solutions Scalable Linux Solutions

Re: [PHP] Re: test security of code

2006-03-08 Thread gustav
Gregory Machin wrote: Hi Is there an application that can pass source code and report potential security problem and or the live site ? Many thanks -- Gregory Machin [EMAIL PROTECTED] [EMAIL PROTECTED] www.linuxpro.co.za www.exponent.co.za Web Hosting Solutions Scalable Linux

[PHP] Re: test variable value?

2006-01-11 Thread James Benson
If your talking values in submitted form data I would use: if(isset($var) trim($var) == '') { echo Please give a value; } James William Stokes wrote: Hello What is the best way to determine if a variable has no value? if ($var= '') or if ($var= 'null') Can 'null' be used

[PHP] Re: test variable value?

2006-01-11 Thread David Robley
William Stokes wrote: Hello What is the best way to determine if a variable has no value? if ($var= '') or if ($var= 'null') Can 'null' be used here? Look at isset() and empty() Cheers -- David Robley You cannot achieve the impossible without attempting the absurd. -- PHP

[PHP] Re: test

2005-10-14 Thread Oliver Grätz
Ignored. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Test post from a new client

2004-11-14 Thread Daniel Schierbeck
Robb Kerr wrote: This is a test post from a new client. I'm trying to decide whether or not to keep it. Please post a reply so that I can see how it shows up. Thanx, Robb FUBAR -- Daniel Schierbeck Help spread Firefox (www.getfirefox.com):

[PHP] Re: test

2004-07-07 Thread John Taylor-Johnston
It works. Just not busy. I prefer to use and post with my (Netscape) newsgroup reader. See: news://news.php.net/php.general If memory serves me correct, it will accept anyone's post that has a valid email address. In any case, it keeps the inbox clean. Barophobia wrote: ok, it's been about an

Re: [PHP] Re: test if $int is integer

2004-06-30 Thread Chris Shiflett
--- Matthew Sims [EMAIL PROTECTED] wrote: I recently purchased George Schlossnagle's Advanced PHP Programming and on page 85 in the Error Handling chapter, he made a reference about the is_int function. In the above function example he had: if (!preg_match('/^\d+$/',$n) || $n 0) {

Re: [PHP] Re: test if $int is integer

2004-06-30 Thread John W. Holmes
Matthew Sims wrote: I recently purchased George Schlossnagle's Advanced PHP Programming and on page 85 in the Error Handling chapter, he made a reference about the is_int function. In the above function example he had: if (!preg_match('/^\d+$/',$n) || $n 0) { In which he mentions: It might be

[PHP] Re: test if $int is integer

2004-06-29 Thread Lars Torben Wilson
Vlad Georgescu wrote: how can test if var $int is integer ? In the manual: http://www.php.net/is_int Another one which might be helpful: http://www.php.net/is_numeric Hope this helps, Torben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: test if $int is integer

2004-06-29 Thread Matthew Sims
Vlad Georgescu wrote: how can test if var $int is integer ? In the manual: http://www.php.net/is_int Another one which might be helpful: http://www.php.net/is_numeric Hope this helps, Torben -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

Re: [PHP] Re: test if $int is integer

2004-06-29 Thread Mark Leavy
Yeah, 4 will pass the is_int() test, '4' won't. I prefere just to use if(ctype_digit($foo)){ ... } On Tue, 29 Jun 2004 15:12:22 -0700 (PDT), Matthew Sims [EMAIL PROTECTED] wrote: I recently purchased George Schlossnagle's Advanced PHP Programming and on page 85 in the Error Handling chapter,

Re: [PHP] Re: test if $int is integer

2004-06-29 Thread Lars Torben Wilson
Matthew Sims wrote: I recently purchased George Schlossnagle's Advanced PHP Programming and on page 85 in the Error Handling chapter, he made a reference about the is_int function. In the above function example he had: if (!preg_match('/^\d+$/',$n) || $n 0) { In which he mentions: It might be

Re: [PHP] Re: test

2004-05-26 Thread Craig
Yeah those damn email always come at same time. Well on my blocked list now. Jordi Canals [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Sherri wrote: Woah! Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Just wait. There are

Re: [PHP] Re: test

2004-05-26 Thread Oliver Hankeln
Craig wrote: Yeah those damn email always come at same time. Well on my blocked list now. This is only helping the Symptom. Why not solve the Problem? The mails you got are auto-replies. Unfortunatley I didn't find a person responsible for this [EMAIL PROTECTED] but perhaps such a person is

[PHP] Re: test

2004-05-25 Thread Sherri
Ah ha. Had to confirm my email address. Got it. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: test

2004-05-25 Thread Sherri
Woah! Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Great. Thanks php.net. Guess you can't even trust the well known sites not to slam you with spam. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] Re: test

2004-05-25 Thread Jason Barnett
Sherri wrote: Woah! Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Great. Thanks php.net. Guess you can't even trust the well known sites not to slam you with spam. The problem is this list has no active moderator (at least none that makes

Re: [PHP] Re: test

2004-05-25 Thread Jordi Canals
Sherri wrote: Woah! Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Just wait. There are some more waiting for you ;) You should receive the Information Desk and Ingram Computer Services mails yet. -- PHP General Mailing List (http://www.php.net/)

Re: [PHP] Re: test

2004-05-25 Thread Brian Dunning
Advance Credit Suisse Bank Great. Thanks php.net. Guess you can't even trust the well known sites not to slam you with spam. Come on, that's not fair. Those emails are sent by some unscrupulous individual who subscribed to the list and set up a rule to reply those spams to everyone who posts to

Re: [PHP] Re: test

2004-05-25 Thread Daniel Clark
I think it's someone else on the list getting the email lists, and spaming. Signed up litterally 1 minute ago and I'm already getting spam. From Advance Credit Suisse Bank Great. Thanks php.net. Guess you can't even trust the well known sites not to slam you with spam. -- PHP General Mailing

[PHP] Re: Test

2003-11-29 Thread Eric
why do you test here at the honored PHP General mailing list? César aracena [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Send test :) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Test message

2003-02-23 Thread Rohin Gosling
Rohin Gosling [EMAIL PROTECTED] wrote in message news:... Hi everybody Please ignor this message. I am having dificulty geting messages to apear in this news group, so this is just a test message I am sending in a desperate efort to try and work out how to get messages into the news group.

[PHP] Re: Test message - Last one, I promise !

2003-02-23 Thread Rohin Gosling
Excellent ! Now I can actually send messages to this place. Rohin Gosling [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Sorry to bomb the news groups with so many test messages. I'll have this problem fixed in a jiffy. Please be patient with me. -- PHP General Mailing List

[PHP] Re: test for ascii or binary string

2002-11-30 Thread Paul Chvostek
On Fri, Nov 29, 2002 at 10:27:05PM -0600, Jonathan Sharp wrote: Is there a way to determine if a string has ascii or binary data in it? You could always see if it matches a regular expression that represents the ascii range you're considering. I.e., ereg('[^a-zA-Z0-9]',$string) will return

[PHP] Re: test for ascii or binary string

2002-11-29 Thread Jonathan Sharp
Doh, so simple. I guess the correct form of the question would be how do I determine if a string has just a-zA-Z0-9 in it plus punctuation... thanks, -js Paul Chvostek wrote: On Fri, Nov 29, 2002 at 10:27:05PM -0600, Jonathan Sharp wrote: Is there a way to determine if a string has ascii or

[PHP] Re: Test

2002-09-17 Thread nicos
It looks it worked, but php.tests is there for that. -- Nicos - CHAILLAN Nicolas [EMAIL PROTECTED] www.WorldAKT.com - Hébergement de sites Internet Tom Ray [EMAIL PROTECTED] a écrit dans le message de news: [EMAIL PROTECTED] Test message -- PHP General Mailing List (http://www.php.net/)

[PHP] Re: Test if URL is alive before including a remote JS

2002-07-02 Thread Richard Lynch
Given I have some content embedded on my page by calling a remote JS and occasionally the URL for the remote script is down causing my page to be slow or fail, can I use the following example as a means to test and timeout the remote server and skip the embedded JS, if the remote server isn't

[PHP] Re: Test for whole number.

2002-04-07 Thread Charlie Killian
That post was incomprehensible. Here it is revised: I'd like to condense the function below into one line. function isOneBitSet($n) { $x = log($n)/log(2); return ($x == intval($x)); } AND I don't want to do this: return (log($n)/log(2) == intval(log($n)/log(2))); So, is there a way to

Re: [PHP] Re: Test for whole number.

2002-04-07 Thread Tom Rogers
Hi Not sure if this is the best way to do it: function isOneBitSet($n) { return !ereg(\.,strval(log($n)/log(2))); } Tom At 09:16 AM 8/04/2002, Charlie Killian wrote: That post was incomprehensible. Here it is revised: I'd like to condense the function below into one line. function

Re: [PHP] Re: Test for whole number.

2002-04-07 Thread Miguel Cruz
On Mon, 8 Apr 2002, Tom Rogers wrote: At 09:16 AM 8/04/2002, Charlie Killian wrote: I'd like to condense the function below into one line. function isOneBitSet($n) { $x = log($n)/log(2); return ($x == intval($x)); } AND I don't want to do this: return (log($n)/log(2) ==

[PHP] Re: test...

2002-03-24 Thread Avdija A . Ahmedhodzic
In article [EMAIL PROTECTED], [EMAIL PROTECTED] says... 24/03/2002 8:34:40 PM Umm, is it just me or has there been no traffic on this list for the last 2 hours Weird people write less on weekdays. Poz! -- Prevencija putem edukacije http://www.narkomanija.com/ -- PHP

[PHP] Re: Test

2002-01-02 Thread Joe Webster
dork John Monfort [EMAIL PROTECTED] wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... Test: cannot send mail, but can read. Please ignore. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL

[PHP] Re: test

2001-12-12 Thread Mike Eheler
Syntax error Andrey Hristov wrote: test -- 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]

[PHP] RE: test ... please ignore ...

2001-02-01 Thread PHPBeginner.com
Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -- 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] RE: test ... please ignore ...

2001-02-01 Thread Navid
, February 01, 2001 2:31 AM To: PHP Subject: [PHP] RE: test ... please ignore ... Maxim Maletsky Founder, Chief Developer PHPBeginner.com (Where PHP Begins) [EMAIL PROTECTED] www.phpbeginner.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

RE: [PHP] RE: test ... please ignore ...

2001-02-01 Thread PHPBeginner.com
it , as says on the FrontPage in 10 days. On February 11-th.. Cheers, Maxim Maletsky -Original Message- From: Navid [mailto:[EMAIL PROTECTED]] Sent: Thursday, February 01, 2001 6:02 PM To: 'PHPBeginner.com'; 'PHP' Subject: RE: [PHP] RE: test ... please ignore ... Thank you very much, I

[PHP] RE: test

2001-02-01 Thread Jon Haworth
No, I didn't get it -Original Message- From: ybcat [mailto:[EMAIL PROTECTED]] Sent: 01 February 2001 15:47 To: [EMAIL PROTECTED] Subject: test OK? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL