Re: [PHP] Testing Variables

2003-10-01 Thread Curt Zirzow
* Thus wrote Richard Baskett ([EMAIL PROTECTED]): on 10/1/03 8:23 PM, Gerard Samuel at [EMAIL PROTECTED] wrote: I've noticed code written in this order - if (FALSE === $foo) { // yada yada } Is there a reason/benefit to test variables like that instead of - if ($foo ===

Re: [PHP] Testing Variables

2003-10-01 Thread Chris Shiflett
--- Curt Zirzow [EMAIL PROTECTED] wrote: if ($do || false == $do ) { try(); } /* Do, or do not. There is no try. */ Isn't there always try? :-) Chris = HTTP Developer's Handbook http://httphandbook.org/ RAMP Training Courses http://www.nyphp.org/ramp My Blog

Re: [PHP] Testing Variables

2003-10-01 Thread Curt Zirzow
* Thus wrote Chris Shiflett ([EMAIL PROTECTED]): --- Curt Zirzow [EMAIL PROTECTED] wrote: if ($do || false == $do ) { try(); } /* Do, or do not. There is no try. */ Isn't there always try? :-) Only in php5 :) Curt -- I used to think I was indecisive, but now I'm not so sure. --

Re: [PHP] Testing Variables

2003-10-01 Thread Gerard Samuel
Curt Zirzow wrote: Yep. Just make sure you dont start speaking english like that, people will look at you funny, or think your yoda :) if ('away' == $put_your_weapon) { $harm = false; } /* Away put your weapon, I mean you no harm */ or if ( 'help' == $you_can ) { hmm(); } /* Help you can,

Re: [PHP] Testing Variables

2003-10-01 Thread Curt Zirzow
* Thus wrote Curt Zirzow ([EMAIL PROTECTED]): * Thus wrote Chris Shiflett ([EMAIL PROTECTED]): --- Curt Zirzow [EMAIL PROTECTED] wrote: if ($do || false == $do ) { try(); } /* Do, or do not. There is no try. */ Isn't there always try? :-) Only in php5 :) oops, you were

[PHP] testing - please ignore

2003-07-23 Thread Nicole Lallande
test my subscription -- Nicole Lallande [EMAIL PROTECTED] 760.753.6766 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Testing for installed components....

2003-03-04 Thread Christopher Ditty
I am trying to write a small script that will test and report what PHP components are available on a given server. Is there a quick and easy way to do this? I know about php info, but I would prefer to have something that will spit hte information out in my format where the user can easily

[PHP] testing for 0

2003-02-28 Thread Steve Buehler
I have a form that has input for minutes. My problem is that I am trying to test to see if the field is blank or not and if they enter a 0 (zero), my test always show it as blank. I have tried !$timemb and !is_numeric($timemb). Thank You Steve -- PHP General Mailing List

RE: [PHP] testing for 0

2003-02-28 Thread Bryan Lipscy
See isset() and empty() -Original Message- From: Steve Buehler [mailto:[EMAIL PROTECTED] Sent: Friday, February 28, 2003 10:29 AM To: PHP Subject: [PHP] testing for 0 I have a form that has input for minutes. My problem is that I am trying to test to see if the field is blank

Re: [PHP] testing for 0

2003-02-28 Thread Leif K-Brooks
Try $timeb ''. Steve Buehler wrote: I have a form that has input for minutes. My problem is that I am trying to test to see if the field is blank or not and if they enter a 0 (zero), my test always show it as blank. I have tried !$timemb and !is_numeric($timemb). Thank You Steve -- The

Re: [PHP] testing for 0

2003-02-28 Thread Ernest E Vogelsinger
At 19:28 28.02.2003, Steve Buehler spoke out and said: [snip] I have a form that has input for minutes. My problem is that I am trying to test to see if the field is blank or not and if they enter a 0 (zero), my test always show it as blank. I have tried

RE: [PHP] testing for 0

2003-02-28 Thread Steve Buehler
, February 28, 2003 10:29 AM To: PHP Subject: [PHP] testing for 0 I have a form that has input for minutes. My problem is that I am trying to test to see if the field is blank or not and if they enter a 0 (zero), my test always show it as blank. I have tried !$timemb and !is_numeric($timemb). Thank You

Re: [PHP] testing for 0

2003-02-28 Thread Leo Spalteholz
On February 28, 2003 10:41 am, Leif K-Brooks wrote: Try $timeb ''. Well whatta ya know I learn something new every day.. I thought the only valid not equal operator was !=... I'm used to using only for SQL server stored procedures or VB.. leo -- PHP General Mailing List

[PHP] Testing if any of the items are false

2003-02-10 Thread rdkurth
How can I do this to determine if one of the items is false if none are then I what it to print the first echo of there is one that is false then print the second echo $test1= YES; $test2= YES; $test3= YES; $test4= YES; $ftest1= YES; $ftest2= NO; $ftest3= YES; $ftest4= YES; if

Re: [PHP] Testing if any of the items are false

2003-02-10 Thread Chris Shiflett
--- [EMAIL PROTECTED] wrote: How can I do this to determine if one of the items is false if none are then I what it to print the first echo of there is one that is false then print the second echo Sorry, that makes no sense to me. $test1= YES; $test2= YES; $test3= YES; $test4= YES;

[PHP] Testing..

2003-02-09 Thread Troy May
Just a quick test. I just re-signed up for this list after a 3 week vacation and I haven't seen even one message yet. So, reply if you get it please so I know this is working. Thanks, Troy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Testing..

2003-02-09 Thread Paul Marinas
working :) On Sun, 9 Feb 2003, Troy May wrote: Just a quick test. I just re-signed up for this list after a 3 week vacation and I haven't seen even one message yet. So, reply if you get it please so I know this is working. Thanks, Troy -- PHP General Mailing List

[PHP] testing for negative numbers

2003-02-06 Thread Robert Samuel White
I realize this should be about the simplest thing in the world to do, but for this reason or that it's not working... I'm using PHP version 4.2.3 Whether I have a negative number in an array, for example: $myArray[ID] = -2 Or the number comes from the database, for example: $row[id] = -2 I

Re: [PHP] testing for negative numbers

2003-02-06 Thread Rasmus Lerdorf
Please provide a complete test script. Are you perhaps not realizing that array indices along with all variables in PHP are case sensitive? $row[ID] and $row[id] are not the same thing. The trivial test of your example: $myArray[id] = -2; if ($myArray[id] 0) echo Negative;

Re: [PHP] testing for negative numbers

2003-02-06 Thread Robert Samuel White
Hi Rasmus: Yes, I'm totally aware of case sensitivity...and basically the script you wrote here is exactly what I'm trying to doing. This is a problem I've been having with several scripts...always when the number is negative. I've also echoed my variables just to make sure they are in fact

Re: [PHP] testing for negative numbers

2003-02-06 Thread Robert Samuel White
Well, I just tried your test script and that works just as it should, so I must be having some other issue. But that still doesn't explain why I can print out the results of $row[dir_id] and it shows it being -2, yet my script (as printed in the last email) never makes it to the correct

Re: [PHP] testing for negative numbers

2003-02-06 Thread Leif K-Brooks
Is it possible that the value is actually -2 (with the space)? Robert Samuel White wrote: Well, I just tried your test script and that works just as it should, so I must be having some other issue. But that still doesn't explain why I can print out the results of $row[dir_id] and it shows

Re: [PHP] testing for negative numbers

2003-02-06 Thread Robert Samuel White
Okay, I'm an idiot. It *was* making it to the statement, but the row_id in the table matrix_structure_routes are actually positive numbers, so when it gets to that point I need to use the absolute value. The reason for using the negative and postive counterparts are to determine which type

[PHP] testing if a query was successful

2003-02-04 Thread Sunfire
hi.. how would you use an if..else statement to test a query in mysql to see if it was successfull or not? would it be something like: $query=(query here...); if($query){ statements if successfull?? }else{ statements if not true?? } or would it be something else.. tnx --- Outgoing mail is

Re: [PHP] testing if a query was successful

2003-02-04 Thread Chris Shiflett
--- Sunfire [EMAIL PROTECTED] wrote: how would you use an if..else statement to test a query in mysql to see if it was successfull or not? Depends on what database server you are using. Here it is in MySQL: if (mysql_query($sql)) { echo Success; } else { echo Failure; } Chris -- PHP

Re: [PHP] testing if a query was successful

2003-02-04 Thread Kevin Stone
- From: Chris Shiflett [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 11:58 AM Subject: Re: [PHP] testing if a query was successful --- Sunfire [EMAIL PROTECTED] wrote: how would you use an if..else statement to test a query in mysql

[PHP] testing a query for success--code doesnt work

2003-02-04 Thread Sunfire
hi.. posted a message about what the code was to test an update query to see if it was successfull using mysql and i tested my code and for some reason even if none of the fields were updated it still reports the success message... heres the code i have: $query=mysql_query(update members set

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
, 2003 3:51 PM To: [EMAIL PROTECTED] Subject: [PHP] testing a query for success--code doesnt work hi.. posted a message about what the code was to test an update query to see if it was successfull using mysql and i tested my code and for some reason even if none of the fields were updated it still

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
I think you want to use mysql_affected_rows -Original Message- From: Sunfire [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 3:51 PM To: [EMAIL PROTECTED] Subject: [PHP] testing a query for success--code doesnt work hi.. posted a message about what the code was to test

Re: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Chris Hayes
At 21:51 4-2-2003, you wrote: hi.. posted a message about what the code was to test an update query to see if it was successfull using mysql and i tested my code and for some reason even if none of the fields were updated it still reports the success message... heres the code i have:

Re: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Sunfire
the record was actually updated } if i can get some code example for that...it would help tnx - Original Message - From: Edward Peloke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 3:46 PM Subject: RE: [PHP] testing a query for success--code doesnt work I

Re: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Kevin Stone
()); if (mysql_affected_rows() == 0) { echo Query executed but no rows were affected; exit; } - Kevin - Original Message - From: Sunfire [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 1:51 PM Subject: [PHP] testing a query for success--code doesnt work hi.. posted a message

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
without errors. Eddie -Original Message- From: Sunfire [mailto:[EMAIL PROTECTED]] Sent: Tuesday, February 04, 2003 4:03 PM To: [EMAIL PROTECTED] Subject: Re: [PHP] testing a query for success--code doesnt work yes that is what i needed.. how many rows were changed as well as how did

Re: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Chris Shiflett
* if the update does not have anything to work on it does not mean it is a failure! except when you EXPECTED it to update something. Right, and the function doesn't care what you expect anyway. :-) * i'm not sure whether if ($query) is the proper way to check this. for trapping

Re: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Kevin Stone
updated./font; -Kevin - Original Message - From: Edward Peloke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 2:16 PM Subject: RE: [PHP] testing a query for success--code doesnt work Just grab your qu ? $affected_rows = mysql_affected_rows($query

RE: [PHP] testing a query for success--code doesnt work

2003-02-04 Thread Edward Peloke
echo font color=green.$affected_rows. were updated./font; -Kevin - Original Message - From: Edward Peloke [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, February 04, 2003 2:16 PM Subject: RE: [PHP] testing a query for success--code doesnt work Just grab your qu

[PHP] Testing

2003-01-24 Thread César Aracena
Testing. -- Cesar Aracena www.icaam.com.ar -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP Testing

2003-01-02 Thread Jim Lucas
prints the php code in the sent page. Is this possible, can it be done, and if so, how? Jim - Original Message - From: Paul Marinas [EMAIL PROTECTED] To: Jim Lucas [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Thursday, January 02, 2003 4:33 PM Subject: Re: [PHP] PHP Testing

Re: [PHP] PHP Testing

2003-01-02 Thread Rick Widmer
At 05:25 PM 1/2/03 -0800, Jim Lucas wrote: VirtualHost * DocumentRoot /some/path/public_html php_admin_value engine On try php_admin_value php_engine on|off Rick -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Testing smtp server

2002-12-13 Thread Max Clark
Hi- I would like to open a connection to tcp port 25 (smtp) as a conditional in a script (if succeeds to this, else to that). I found the socket_create function that is listed as experimental and requires a re-compile of php. Is there a built in way to perform this kind of test? Thanks in

Re: [PHP] Testing smtp server

2002-12-13 Thread Johannes Schlueter
On Friday 13 December 2002 21:30, Max Clark wrote: I found the socket_create function that is listed as experimental and requires a re-compile of php. Is there a built in way to perform this kind of test? Based upon the second example on http://www.php.net/manual/en/ref.sockets.php : echo

[PHP] testing for empty array

2002-11-26 Thread poliva
I have an array $keywords, how do I test to see if it is empty? $keywords == '' seems to throw out an error. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] testing for empty array

2002-11-26 Thread Van Andel, Robert
I believe if(empty($keywords)) or even if(!$keywords) will check if they are empty Robbert van Andel -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Sent: Tuesday, November 26, 2002 4:41 PM To: [EMAIL PROTECTED] Subject: [PHP] testing for empty array I have

Re: [PHP] testing

2002-11-18 Thread Maxim Maletsky
just mail: [EMAIL PROTECTED] :) You succeded though :) -- Maxim Maletsky [EMAIL PROTECTED] [EMAIL PROTECTED] wrote... : not sure how to post -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php -- PHP General Mailing List

[PHP] testing

2002-11-17 Thread rw
not sure how to post -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] testing

2002-11-12 Thread pig pig
testing __ Do You Yahoo!? Great flight deals, travel info and prizes! http://sg.travel.yahoo.com -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] testing

2002-11-12 Thread Troy May
I think it works. ;) -Original Message- From: pig pig [mailto:pigpig8080;yahoo.com.sg] Sent: Tuesday, November 12, 2002 5:44 AM To: [EMAIL PROTECTED] Subject: [PHP] testing testing __ Do You Yahoo!? Great flight deals, travel info

[PHP] Testing list access - Please ignore this message

2002-10-08 Thread Dave Goodrich
testing internal relay sendmail.cf -- Dave Goodrich System Administrator TLS.NET Columbus IN http://tls.net [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] testing post

2002-09-21 Thread Kleshchevnikov Alexander
Hi all! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] testing

2002-08-21 Thread Sami Mahamed
just a test. -Sami -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] testing

2002-07-25 Thread lallous
test -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] testing :: sorry

2002-07-09 Thread Vincent Kruger

[PHP] Testing PHP on a local machine

2002-06-24 Thread Craig
I want to set up a site at home to play with php I have windows xp pro, dreamweaver MX and mysql Do I need anything to view live application data locally in my browser eg a dynamic php website that is on my local machine that i can access and update? I hope this makes sense Can anyone point

Re: [PHP] Testing PHP on a local machine

2002-06-24 Thread Henry
Craig, goto http://www.php.net/downloads.php and get the php exe installer read this doc. http://in.geocities.com/samdarshipali/apache-php-mysql.htm that should get you going. cya Henry -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Testing PHP on a local machine

2002-06-24 Thread David Freeman
I want to set up a site at home to play with php I have windows xp pro, dreamweaver MX and mysql Do I need anything to view live application data locally in my browser You'll need to install a web server that supports php and php itself. I did this recently on my XP Pro laptop

[PHP] testing for blank var

2002-03-21 Thread ROBERT MCPEAK
if $img_url has a value, then I'd like to show the image, if it doesn't, then I'd like to show a message. What's wrong with my code? Am I incorrectly testing for the value? The else works fine, but not the if. Thanks! if (!$img_url) { echo bNo Image URL Entered/bbr;

RE: [PHP] testing for blank var

2002-03-21 Thread Rick Emery
if ( ! ISSET($img_url) ) -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:18 AM To: [EMAIL PROTECTED] Subject: [PHP] testing for blank var if $img_url has a value, then I'd like to show the image, if it doesn't, then I'd like

RE: [PHP] testing for blank var

2002-03-21 Thread ROBERT MCPEAK
Beautiful! Rick Emery [EMAIL PROTECTED] 03/21/02 09:19AM if ( ! ISSET($img_url) ) -Original Message- From: ROBERT MCPEAK [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 21, 2002 8:18 AM To: [EMAIL PROTECTED] Subject: [PHP] testing for blank var if $img_url has a value

[PHP] Testing for NULL

2002-03-18 Thread Jesse Warden
Hi, I am new... hope I am using this list correctly. I am trying to test for a null value, and if it is null, then to use a default value instead. The login page that I have, I want to show nothing in the username field unless it is passed a username from another PHP page via the header

Re: [PHP] Testing for NULL

2002-03-18 Thread Andrey Hristov
if (!isset($login)){ echo login undefined; } Best regards, Andrey Hristov - Original Message - From: Jesse Warden [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, March 18, 2002 9:09 PM Subject: [PHP] Testing for NULL Hi, I am new... hope I am using this list correctly

[PHP] Testing mail functionality on a local network possible?

2002-03-10 Thread Andy
Hi there, I am wondering if it would be possible to send an e-mail inside my production environment without connecting to the internet. My application is running on OSX and I would like to send mail via php to the win2k machine. I was reading something about mailservers but did not really get if

RE: [PHP] Testing mail functionality on a local network possible?

2002-03-10 Thread Demitrious S. Kelly
. After that the matter of connecting to the mailbox and actually reading the mail is your problem :) Cheers -Original Message- From: Andy [mailto:[EMAIL PROTECTED]] Sent: Sunday, March 10, 2002 2:01 PM To: [EMAIL PROTECTED] Subject: [PHP] Testing mail functionality on a local

[PHP] Testing patch for 4.0.6

2002-02-28 Thread Chris Mason
I am using 4.0.6 as a apache module in a redhat server, compiling the src rpm with a couple of custom commands in the spec file. I can't upgrade to a newer version due to changes in the xmltree() function that breaks some of my projects. With the recent vunerability, I needed to generate a

[PHP] testing

2002-02-27 Thread mike koldychev
testing, testing _ Send and receive Hotmail on your mobile device: http://mobilemsncom -- PHP General Mailing List (http://wwwphpnet/) To unsubscribe, visit: http://wwwphpnet/unsubphp

[PHP] testing

2002-02-14 Thread val petruchek
test msg pls ignore -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] testing for cookies on the server side (again, still can't get my head around it)

2002-02-05 Thread Johnson, Kirk
So what's the flow of code to test for cookies on the server side? I'm pretty sure that the only way is to set a cookie, then test for it. That is pretty much it. On the first page request to your application, if PHP encounters a session_start() in your code, it will return a cookie named

[PHP] testing for cookies on the server side (again, still can't get my head around it)

2002-02-04 Thread Justin French
Hi all, Forgive me for re-posting this topic, but I still can't get my head around the right way to work with sessions/cookies, whilst providing some sort of server side testing for people without cookies. I do not want to do it client side (javascript etc). I've got a block of code that I can

[PHP] testing for cookies capable client (browser)

2002-02-02 Thread Justin French
Hi, Is there a simple method for checking if cookies are enabled (able to be set) on a browser? The only method I can think of is setting the cookie, then refreshing the page (or going to another URL) in order to tet if the cookie exists... which sounds messy. I'd prefer not to use anything

[PHP] Testing mailing list.

2002-02-01 Thread Ricardo J . Veludo
Sorry about this test. Ricardo J. Veludo e-mail: [EMAIL PROTECTED] __ http://www.IOL.pt Todo o mundo passa por aqui! -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

[PHP] Testing Hyperlinks on in a database.

2002-01-30 Thread Philip J. Newman
Is there anyway using PHP to send a command to a server to get the get eather a 404 or 200 reply? Philip J. Newman Philip's Domain - Internet Project. http://www.philipsdomain.com/ [EMAIL PROTECTED] Phone: +64 25 6144012

Re: [PHP] Testing Hyperlinks on in a database.

2002-01-30 Thread Jason Wong
On Thursday 31 January 2002 10:04, Philip J. Newman wrote: Is there anyway using PHP to send a command to a server to get the get eather a 404 or 200 reply? fsockopen() -- Jason Wong - Gremlins Associates - www.gremlins.com.hk /* Anyone who goes to a psychiatrist ought to have his head

Re: [PHP] Testing Hyperlinks on in a database.

2002-01-30 Thread Michael Sims
At 03:04 PM 1/31/2002 +1300, Philip J. Newman wrote: Is there anyway using PHP to send a command to a server to get the get eather a 404 or 200 reply? Here's a function I put together to do just that. It takes a full URL as an argument and returns either boolean true, boolean false, or a

[PHP] Testing: Igonore This Message

2001-12-31 Thread John Monfort
Test Cannot submit to list. 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]

Re: [PHP] Testing: DON'T Ignore This Message

2001-12-31 Thread Bogdan Stancescu
It seems to work. I'll use this thread to ask an admin question: why doesn't the mailing list daemon add a reply-to address similar to the one I manually added here? Wouldn't it be more comfortable for all parties concerned? Bogdan John Monfort wrote: Test Cannot submit to list. Test --

Re: [PHP] Testing: DON'T Ignore This Message

2001-12-31 Thread Michael Sims
At 05:07 PM 12/31/2001 +0200, you wrote: It seems to work. I'll use this thread to ask an admin question: why doesn't the mailing list daemon add a reply-to address similar to the one I manually added here? Wouldn't it be more comfortable for all parties concerned? I agree. It's a pain to have

Re: [PHP] Testing: DON'T Ignore This Message

2001-12-31 Thread B. van Ouwerkerk
I agree. It's a pain to have to click Reply-to-all and then strip out the individuals email address (leaving only the address of the list)...other lists that I'm on have the reply-to always pointing back to the list so all you have to do is click Reply and you know it will go where it needs

Re: [PHP] Testing: DON'T Ignore This Message

2001-12-31 Thread Michael Sims
At 11:45 PM 12/31/2001 +0100, B. van Ouwerkerk wrote: u.. I can give you one good reason.. Out Of the Office replies don't get to the list.. M$ Lookout is specilized in bombing lists with those stupid messages. Seems a complete list with reasons why you shouldn't set reply to to the

[PHP] testing if mailaccount is existent

2001-12-06 Thread Oliver-B Kueppers
hi all, does anyone know if there is a possibilty to check if a mailadress is existent, without sending a testemail? thanks for your help Mit freundlichen Grüßen, Oliver Küppers CIB - Firmenkunden Deutschland Marketing und Vertrieb Deutsche Bank AG (Zentrale) phone : +49 (69) 910 - 34723

Re: [PHP] testing if mailaccount is existent

2001-12-06 Thread Brian Clark
* Oliver-B Kueppers [EMAIL PROTECTED] [Dec 06. 2001 04:38]: hi all, does anyone know if there is a possibilty to check if a mailadress is existent, without sending a testemail? thanks for your help Class that may be used to determine if a given e-mail address is valid. It features: -

[PHP] Testing for the presence of HTML

2001-11-20 Thread Richard S. Crawford
My database contains a field which may or may not contain HTML code, depending on what a particular user enters when they enter the data. Here's the challenge: If there is HTML code in this field, then print the text with interpreted HTML. No problem at all. If there is no HTML code in the

[PHP] Testing

2001-09-14 Thread karthikeyan
Testing

[PHP] testing..

2001-08-09 Thread Scott Fletcher
Testing! -- 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] Testing if Scripting has been disabled

2001-08-01 Thread Don
Is there a method to test if Scripting has been disabled in the browser? Thanks, Don -- 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] Testing if Scripting has been disabled

2001-08-01 Thread scott [gts]
Scripting is a rather large word... do you mean javascript? -Original Message- From: Don [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 12:58 PM To: php list Subject: [PHP] Testing if Scripting has been disabled Is there a method to test if Scripting has been

RE: [PHP] Testing if Scripting has been disabled

2001-08-01 Thread scott [gts]
]] Subject: Re: [PHP] Testing if Scripting has been disabled Well, yes, but if I disable scripting in I.E., won't PHP scripts not work as well? - Original Message - From: scott [gts] [EMAIL PROTECTED] Subject: RE: [PHP] Testing if Scripting has been disabled Scripting is a rather large

Re: [PHP] testing if var is empty

2001-07-21 Thread Dave Freeman
On 21 Jul 01, at 12:07, Justin French wrote: I'm a semi-newbie, and if I want to check if a variable is set, or contains something, i've been doing it like this: if($var != ) { ... } if ($var) { // $var has been set } else { // $var has not been set } will do what you

Re: [PHP] testing if var is empty

2001-07-21 Thread Saquib Farooq
On Sat, 21 Jul 2001, Dave Freeman wrote: On 21 Jul 01, at 12:07, Justin French wrote: I'm a semi-newbie, and if I want to check if a variable is set, or contains something, i've been doing it like this: if($var != ) { ... } if ($var) { // $var has been set } else {

Re: [PHP] testing if var is empty

2001-07-21 Thread Stefan Rusterholz
56 W3 www.interaktion.ch -- - Original Message - From: Saquib Farooq [EMAIL PROTECTED] To: Dave Freeman [EMAIL PROTECTED] Cc: php [EMAIL PROTECTED] Sent: Saturday, July 21, 2001 11:50 AM Subject: Re: [PHP] testing if var is empty On Sat, 21 Jul 2001, Dave

Re: [PHP] testing if var is empty

2001-07-21 Thread Dave Freeman
On 21 Jul 01, at 14:50, Saquib Farooq wrote: if ($var) { // $var has been set } else { // $var has not been set } what if the var is set to zero i.e. false. the control will go in the else part if it is not zero ( not false) it will go in the if control. Just did a

[PHP] testing if var is empty

2001-07-20 Thread Justin French
Hi, I'm a semi-newbie, and if I want to check if a variable is set, or contains something, i've been doing it like this: if($var != ) { ... } I'm sure there is a better/safer/smarter/faster/more reliable way? Justin French -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

Re: [PHP] testing if var is empty

2001-07-20 Thread Rasmus Lerdorf
http://php.net/empty On Sat, 21 Jul 2001, Justin French wrote: Hi, I'm a semi-newbie, and if I want to check if a variable is set, or contains something, i've been doing it like this: if($var != ) { ... } I'm sure there is a better/safer/smarter/faster/more reliable way? Justin

RE: [PHP] testing

2001-07-06 Thread Don Read
On 06-Jul-01 McShen wrote: where are u guys? I'm sorry, I've gone insane, please leave your message and number at the tone. I will return your call as soon as i get back. ... BEEP! -- Don Read [EMAIL PROTECTED] -- It's always darkest before the dawn. So

Re: [PHP] testing

2001-07-06 Thread Chris \TunkeyMicket\ Watford
] testing I'm on my way to Mars atm... - Original Message - From: McShen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 1:09 PM Subject: [PHP] testing where are u guys? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL

Re: [PHP] testing

2001-07-06 Thread Chris Anderson
You mean I'm not here? - Original Message - From: Don Read [EMAIL PROTECTED] To: McShen [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 2:32 AM Subject: RE: [PHP] testing On 06-Jul-01 McShen wrote: where are u guys? I'm sorry, I've gone insane, please leave

Re: [PHP] testing

2001-07-06 Thread ReDucTor
Hey, how is micket pro going? - Original Message - From: Chris TunkeyMicket Watford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 4:41 PM Subject: Re: [PHP] testing Hi2u ReDucTor Chris TunkeyMicket Watford TunkeyMicket

Re: [PHP] testing

2001-07-06 Thread Chris \TunkeyMicket\ Watford
: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 3:10 AM Subject: Re: [PHP] testing Hey, how is micket pro going? - Original Message - From: Chris TunkeyMicket Watford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 4:41 PM Subject: Re: [PHP] testing Hi2u ReDucTor

Re: [PHP] testing

2001-07-06 Thread ReDucTor
Mind sending me a copy? - Original Message - From: Chris TunkeyMicket Watford [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 5:10 PM Subject: Re: [PHP] testing Was 100% done, now 70% done as a hard-drive crash set me back a bit... Chris TunkeyMicket Watford

[PHP] testing

2001-07-05 Thread McShen
where are u guys? -- 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] testing

2001-07-05 Thread ReDucTor
I'm on my way to Mars atm... - Original Message - From: McShen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 06, 2001 1:09 PM Subject: [PHP] testing where are u guys? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

Re: [PHP] testing

2001-07-05 Thread John Monfort
My map says, 'I am here'! On Thu, 5 Jul 2001, McShen wrote: where are u guys? -- 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

<    1   2   3   >