Re: [PHP] List working?

2012-03-27 Thread Jay Blanchard
[snip]
 y u no help me  !!  i have white page withg my php codes in my page !
 help please !!  asap please  i put codes in my file and is white
 
[/snip]

You put code in your e-mail? Or code in your web page? If it is your web page 
you need to start a new thread and post the code that you used so that we can 
help trouble-shoot.


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List-Unsubscribe

2010-11-07 Thread Daniel P. Brown
To unsubscribe, send a blank email to
php-general-unsubscr...@lists.php.net from the email address that is
subscribed to the list.  Alternatively, you may use the form at
http://php.net/mailinglists .

-- 
/Daniel P. Brown
Dedicated Servers, Cloud and Cloud Hybrid Solutions, VPS, Hosting
(866-) 725-4321
http://www.parasane.net/

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] RE: PHP list posting confirmation for vicki.stanfield....@dfas.mil

2010-09-08 Thread STANFIELD, VICKI CTR DFAS
I am trying to build php-5.3.3 and getting the following error: 

/users/0/php-5.3.3/TSRM -I/users/cin05038/php-5.3.3/Zend
-I/usr/local/include -g -O2 -DZTS   -c
/users/0/php-5.3.3/ext/standard/filestat.c -o
ext/standard/filestat.lo 
/users/0/php-5.3.3/ext/standard/filestat.c: In function
`php_do_chgrp':
/users/0/php-5.3.3/ext/standard/filestat.c:416: error: too many
arguments to function `getgrnam_r'
/users/0/php-5.3.3/ext/standard/filestat.c: In function
`php_do_chown':
/users/0/php-5.3.3/ext/standard/filestat.c:517: error: too many
arguments to function `getpwnam_r'
make: *** [ext/standard/filestat.lo] Error 1

I have set my ORACLE_HOME, my PATH, and my LD_LIBRARY_PATH
And used the following configure command:

./configure --prefix=/app/php532 --with-apxs2=/app/apache2215/bin/apxs
--with-zlib --with-zlib-dir=/usr/lib --with-png-dir=/usr/include/libpng
--with-openssl=/shared_ro/openssl_098
--with-oci8=/shared_ro/users.oracle/11.1.0

I have tried the make that came on Solaris 10 and gmake and get the same
error either way. Can anyone give me a hint as to what I am doing wrong
in this build?

  -Vicki Stanfield, RHCE, CISSP
Web Management Group


--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] RE: PHP list posting confirmation for vicki.stanfield....@dfas.mil

2010-09-08 Thread tedd

At 9:03 AM -0400 9/8/10, STANFIELD, VICKI CTR DFAS wrote:

I am trying to build php-5.3.3 and getting the following error:



And what does the Subject line say about your problem? Absolutely nothing!

Please understand that these QA's are kept in the archives for 
others to read, review, and resolve their problems.


You will do much better at getting your question answered by 
following normal practices for most all list servers. IOW, briefly 
describe your problem in the subject line and submit your problem.


Cheers,

tedd

--
---
http://sperling.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] RE: PHP list posting confirmation for vicki.stanfield....@dfas.mil

2010-09-08 Thread STANFIELD, VICKI CTR DFAS
That was a mistake. My apologies. I meant to change the Subject line
before hitting send.

  -Vicki Stanfield, RHCE, CISSP
Web Management Group
tso-cs-web-t...@dfas.mil

Defense Finance and Accounting Service
Technical Services Organization - Corporate Services
vicki.stanfield@dfas.mil
(317)510-3375

-Original Message-
From: tedd [mailto:tedd.sperl...@gmail.com] 
Sent: Wednesday, September 08, 2010 9:22 AM
To: STANFIELD, VICKI CTR DFAS; php-general@lists.php.net
Subject: [PHP] RE: PHP list posting confirmation for
vicki.stanfield@dfas.mil

At 9:03 AM -0400 9/8/10, STANFIELD, VICKI CTR DFAS wrote:
I am trying to build php-5.3.3 and getting the following error:


And what does the Subject line say about your problem? Absolutely
nothing!

Please understand that these QA's are kept in the archives for 
others to read, review, and resolve their problems.

You will do much better at getting your question answered by 
following normal practices for most all list servers. IOW, briefly 
describe your problem in the subject line and submit your problem.

Cheers,

tedd

-- 
---
http://sperling.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP list posting confirmation for izod...@gmail.com

2009-05-27 Thread BeMyCandy.com
I need to establish connection to the server first, send in my login
packet and before reading the server response.

The same error when I also use the below function:

$fp = stream_socket_client($con:$ip:$port, $errno, $errstr, $timeout);

 if (!$fp) {
 echo $errstr ($errno); //$errstr ($errno)br /\n;
 }

On Wed, May 27, 2009 at 9:12 AM, Sherif Gayed sga...@gmail.com wrote:

 I think you need to use fread not fwrite.

 Regards,

 Sherif

 On Wed, May 27, 2009 at 8:08 PM, help izod...@gmail.com wrote:
  Hi,
 
  I am trying to connect to specific server using but I have the below
 error
  messagr. Whta could be the problem?
 
  $fp = fsockopen($ip,$port, $errno, $errstr, $timeout);
   fwrite($fp,$LRG);
 
   //return  $errstr ($errno);
 
   if (!$fp) {
   echo $errstr ($errno); //$errstr ($errno)br /\n;
   }
 
  *A connection attempt failed because the connected party did not properly
  respond after a period of time, or established connection failed because
  connected host has failed to respond. (10060)*
 




-- 
www.bemycandy.com


Re: [PHP] list all constitute group of array ?

2009-02-14 Thread German Geek
Do you want exactly that list or simply all the possible combinations?

If you want all possible combinations, search for a permute or permutation
function in php...

Does sound like homework lol. :-)

Regards,
Tim

Tim-Hinnerk Heuer

http://www.ihostnz.com
Alanis Morissette  - We'll love you just the way you are if you're
perfect.

2009/2/14 LKSunny a...@pc86.com

 ?
 $a = array(a, b, c, d);

 /*
 how to list:
 abcd
 abc
 ab
 ac
 ad
 bcd
 bc
 bd
 cd
 a
 b
 c
 d

 who have idea ? thank you very much !!
 */
 ?



 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] list all constitute group of array ?

2009-02-13 Thread Robert Cummings
On Sat, 2009-02-14 at 07:41 +0800, LKSunny wrote:
 ?
 $a = array(a, b, c, d);
 
 /*
 how to list:
 abcd
 abc
 ab
 ac
 ad
 bcd
 bc
 bd
 cd
 a
 b
 c
 d
 
 who have idea ? thank you very much !!
 */
 ?

This looks like homework. Use recursion.

Cheers,
Rob.
-- 
http://www.interjinn.com
Application and Templating Framework for PHP


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list all constitute group of array ?

2009-02-13 Thread Shawn McKenzie
Robert Cummings wrote:
 On Sat, 2009-02-14 at 07:41 +0800, LKSunny wrote:
 ?
 $a = array(a, b, c, d);

 /*
 how to list:
 abcd
 abc
 ab
 ac
 ad
 bcd
 bc
 bd
 cd
 a
 b
 c
 d

 who have idea ? thank you very much !!
 */
 ?
 
 This looks like homework. Use recursion.
 
 Cheers,
 Rob.

Well, I don't know how you list them in that pattern, you need to write
an algorithm, but array_keys() will give keys for the array.

-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list all constitute group of array ?

2009-02-13 Thread Shawn McKenzie
Shawn McKenzie wrote:
 Robert Cummings wrote:
 On Sat, 2009-02-14 at 07:41 +0800, LKSunny wrote:
 ?
 $a = array(a, b, c, d);

 /*
 how to list:
 abcd
 abc
 ab
 ac
 ad
 bcd
 bc
 bd
 cd
 a
 b
 c
 d

 who have idea ? thank you very much !!
 */
 ?
 This looks like homework. Use recursion.

 Cheers,
 Rob.
 
 Well, I don't know how you list them in that pattern, you need to write
 an algorithm, but array_keys() will give keys for the array.
 
Or, if I actually read your post they are values, so maybe
array_values() or you can check http://php.net/manual/book.array.php and
hope you get an A.


-- 
Thanks!
-Shawn
http://www.spidean.com

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Help - Email Change

2007-09-21 Thread Per Jessen
Andrew Prostko wrote:

 I would like to change the email address this list is sending to,
 
 I sent mail to '[EMAIL PROTECTED]' but I haven't received
 anything back.
 
 Can anyone tell me how to do this real quick?

1. unsubscribe old address.
2. subscribe new address. 

Really quick.


/Per Jessen, Zürich

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP list as a blog

2007-07-31 Thread Michelle Konzack
Sorry for the late fdrop in...

Am 2007-07-28 21:31:01, schrieb Børge Holen:
 On Thursday 14 June 2007 00:41, Philip Thompson wrote:
  On Jun 13, 2007, at 1:15 PM, Richard Lynch wrote:
   On Wed, June 13, 2007 12:21 am, Crayon Shin Chan wrote:
snip
   Do students and interns still have quotas on their email accounts?...
 
  Yes. It does depend on the university though. For our students, the
  default is only 50 megs - they may request more. However, these text-
  only emails don't really take up that much space.

WOW, thats hard...

I have an account at the University in Freiburg/Germany and we
have 1 GByte of storage sonce diskspace cost nearly nothing...

(Even if there are over 100.000 Students)

 There seems to be some failure to comunicate (I believe the Prodigy said 
 that)... whatever, quotas on the universities will not keep you from 
 recieving mail... or download anything of the net.  It just defines the space 
 available to the user. The temporary space available lets you pull way more, 
 and get a delete warning from either an automated system or an admin (at my 
 university, wasn't it 10 days or so before forced deletion on random objects 
 occured?... dunno).

Random objects or objects older then a a certain age?
I do not believem that a Sysadmin would delete Random objects...

 Imagine an master or phD degree getting lost because someone set up an 
 university server with some weird download quota.

Such things could be quiet expensive...

 This could hardly be _A_ reason for makin' this blog... the amount of mail or 
 numbers should not be an issue. If it is so... how about them digest mails?

...and I realy ca not believe, that an University seup a quota of 50 
MBytes.

I know many students which create montly folders and then they tar it 
up at the end of the month.

For example I have the whole list fro, 2002 to 2007 as local mailarchive
and the smalest bzip2 tarball is from 2003-11 (308kByte) and the biggest
2007-04 (1538 kByte) and deco,pressed nearly 6 times bigger MAILDIR.

Greetings
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant


-- 
Linux-User #280138 with the Linux Counter, http://counter.li.org/
# Debian GNU/Linux Consultant #
Michelle Konzack   Apt. 917  ICQ #328449886
   50, rue de Soultz MSN LinuxMichi
0033/6/6192519367100 Strasbourg/France   IRC #Debian (irc.icq.com)


signature.pgp
Description: Digital signature


[PHP] Re: PHP list as a blog

2007-07-31 Thread M. Sokolewicz

Michelle Konzack wrote:

Sorry for the late fdrop in...

Am 2007-07-28 21:31:01, schrieb Børge Holen:

On Thursday 14 June 2007 00:41, Philip Thompson wrote:

On Jun 13, 2007, at 1:15 PM, Richard Lynch wrote:

On Wed, June 13, 2007 12:21 am, Crayon Shin Chan wrote:

snip

Do students and interns still have quotas on their email accounts?...

Yes. It does depend on the university though. For our students, the
default is only 50 megs - they may request more. However, these text-
only emails don't really take up that much space.


WOW, thats hard...

I have an account at the University in Freiburg/Germany and we
have 1 GByte of storage sonce diskspace cost nearly nothing...

(Even if there are over 100.000 Students)

There seems to be some failure to comunicate (I believe the Prodigy said 
that)... whatever, quotas on the universities will not keep you from 
recieving mail... or download anything of the net.  It just defines the space 
available to the user. The temporary space available lets you pull way more, 
and get a delete warning from either an automated system or an admin (at my 
university, wasn't it 10 days or so before forced deletion on random objects 
occured?... dunno).


Random objects or objects older then a a certain age?
I do not believem that a Sysadmin would delete Random objects...

Imagine an master or phD degree getting lost because someone set up an 
university server with some weird download quota.


Such things could be quiet expensive...

This could hardly be _A_ reason for makin' this blog... the amount of mail or 
numbers should not be an issue. If it is so... how about them digest mails?


...and I realy ca not believe, that an University seup a quota of 50 
MBytes.
The Radboud University in Nijmegen (The Netherlands) has a 100MiB quota 
till a few months ago, it has been changed to 1.5GiB now I think. It's 
actualy not that strange, it depends on how active the university thinks 
its students are on the internet and what an average student requires. 
In this case, I'm part of the Medical Sciences Faculty, there's not that 
much use for a ton of webspace. While on the Faculty for Mathematics and 
Informatics the students receive 2GiB of extra storage space at the 
start of their first year (it has since been changed to 1.5GiB across 
all faculties though)


I know many students which create montly folders and then they tar it 
up at the end of the month.


For example I have the whole list fro, 2002 to 2007 as local mailarchive
and the smalest bzip2 tarball is from 2003-11 (308kByte) and the biggest
2007-04 (1538 kByte) and deco,pressed nearly 6 times bigger MAILDIR.

Greetings
Michelle Konzack
Systemadministrator
Tamay Dogan Network
Debian GNU/Linux Consultant




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] Re: PHP list as a blog

2007-06-13 Thread Colin Guthrie
Paul Scott wrote:
 I have set up our new Chisimba blog system (GPL, http://avoir.uwc.ac.za)
 to blog all of the posts to this list.
 
 Please check it out at
 http://196.21.45.50/fsiu/chisimba_framework/app/index.php?module=blogaction=allblogs
 
 and let me know what you think!

Erm, reinventing the wheel?

http://blog.gmane.org/gmane.comp.php.general

I always use/view the PHP list via gmane (I'm not subscribed). I use
Thunderbird's NNTP reader and gmanes NNTP server. It works like a charm
and saves a lot of hassle subscribing to mailing lists :)

Check it out: http://www.gmane.org/

Col.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP list as a blog

2007-06-13 Thread Paul Scott

On Wed, 2007-06-13 at 11:51 +0100, Colin Guthrie wrote:
 Erm, reinventing the wheel?
 

Not quite, more of a test of the code so that I know that Bad Things do
not happen when there is a lot of traffic/posts.

If it serves another purpose (like letting students etc see what is
happening) all the better.

I notice that gmane blogs do not obfuscate the email addresses of
senders though.

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP list as a blog

2007-06-13 Thread Colin Guthrie
Paul Scott wrote:
 On Wed, 2007-06-13 at 11:51 +0100, Colin Guthrie wrote:
 Erm, reinventing the wheel?

 
 Not quite, more of a test of the code so that I know that Bad Things do
 not happen when there is a lot of traffic/posts.
 
 If it serves another purpose (like letting students etc see what is
 happening) all the better.
 
 I notice that gmane blogs do not obfuscate the email addresses of
 senders though.

Depends on the list settings - it can be turned on with the flick of a
switch... just ask the guys at Gmane.

It's quite annoying for trying to contact someone tho' :)

For example, via NNTP here I can see your address, but on e.g. the KDE
Imaging mailing list they are all messed up!

Col.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] Re: PHP list as a blog

2007-06-13 Thread Paul Scott

On Wed, 2007-06-13 at 12:26 +0100, Colin Guthrie wrote:
 Depends on the list settings - it can be turned on with the flick of a
 switch... just ask the guys at Gmane.
 

Sure, but most lists do not do this by default...

 It's quite annoying for trying to contact someone tho' :)
 
It's even more annoying getting a zillion spammers knocking over your
mailserver for no reason. :)

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] List

2007-04-27 Thread Jochem Maas
Wolf wrote:
 Command line tool...  bork no!

yeah ok - my memory was rusty.
although I don't know exactly what swedish chefs have to do with.
(maybe outlook was written by swedish chefs)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List

2007-04-25 Thread George Pitcher
 Does anyone else have this problem with the list. It seems that
 every time I
 check my email there is one or more messages from the list that royally
 screws up Outlook. I usually have to delete all list messages from the
 actual server and reboot. It only happens with emails from
 [EMAIL PROTECTED]

 Just trying to narrow down the problem. Not sure if this is spam that's
 sneaking into the list messing things up or what.

I've had no problem using Outlook 2000 on XP, and also not using digest
mode.

George

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread tedd

At 1:53 PM -0400 4/24/07, Beauford wrote:

Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks


No problems here, but I use Mac and it's always boring that way.

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Børge Holen
On Tuesday 24 April 2007 19:53, Beauford wrote:
 Does anyone else have this problem with the list. It seems that every time
 I check my email there is one or more messages from the list that royally
 screws up Outlook. I usually have to delete all list messages from the
 actual server and reboot. It only happens with emails from
 [EMAIL PROTECTED]

 Just trying to narrow down the problem. Not sure if this is spam that's
 sneaking into the list messing things up or what.

 Thanks

kmail, no probs... 

-- 
---
Børge
http://www.arivene.net
---

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread jgodish
Quoting Børge Holen [EMAIL PROTECTED]:

 On Tuesday 24 April 2007 19:53, Beauford wrote:
  Does anyone else have this problem with the list. It seems that every time
  I check my email there is one or more messages from the list that royally
  screws up Outlook. I usually have to delete all list messages from the
  actual server and reboot. It only happens with emails from
  [EMAIL PROTECTED]
 
  Just trying to narrow down the problem. Not sure if this is spam that's
  sneaking into the list messing things up or what.
 
  Thanks

 kmail, no probs...

 --
 ---
 Børge
 http://www.arivene.net
 ---

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


No problems with Thunderbird (Home) or Outlook Express (Work)
John

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Daniel Brown

   Yeah, no problems on Gmail (webmail), or on the following configurations
(set up on a different address to receive list mail only):

Linux: Ximian Evolution, KMail
Windows: Outlook, Outlook Express, Thunderbird



On 4/25/07, [EMAIL PROTECTED] [EMAIL PROTECTED] wrote:


Quoting Børge Holen [EMAIL PROTECTED]:

 On Tuesday 24 April 2007 19:53, Beauford wrote:
  Does anyone else have this problem with the list. It seems that every
time
  I check my email there is one or more messages from the list that
royally
  screws up Outlook. I usually have to delete all list messages from the
  actual server and reboot. It only happens with emails from
  [EMAIL PROTECTED]
 
  Just trying to narrow down the problem. Not sure if this is spam
that's
  sneaking into the list messing things up or what.
 
  Thanks

 kmail, no probs...

 --
 ---
 Børge
 http://www.arivene.net
 ---

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php


No problems with Thunderbird (Home) or Outlook Express (Work)
John

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107


Re: [PHP] List

2007-04-25 Thread Philip Thompson

On Apr 25, 2007, at 8:21 AM, tedd wrote:


At 1:53 PM -0400 4/24/07, Beauford wrote:
Does anyone else have this problem with the list. It seems that  
every time I
check my email there is one or more messages from the list that  
royally
screws up Outlook. I usually have to delete all list messages from  
the

actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam  
that's

sneaking into the list messing things up or what.

Thanks


No problems here, but I use Mac and it's always boring that way.

tedd


Has anyone thought oh we are sending him bulk mail from php- 
general and causing his Outlook to crash! Haha. I just thought that  
was funny.


Oh... me too. Apple Mail (with filters), non-digest works just fine.

~Phil

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List

2007-04-25 Thread Chris W. Parker
On Tuesday, April 24, 2007 6:02 PM Richard Lynch mailto:[EMAIL PROTECTED]
said:

 I do not have any problems, but I'm not using Outlook, and never will.

Okay...

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Justin Frim

Have you considered using something other than Outlook?


Beauford wrote:


Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks

 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Daniel Brown

   It's those new Microsoft filters that crash on or block out anything
mentioning open source.  Try running the following code prior to the mail
getting to your inbox like so:
   ? str_replace(PHP,ASP,$message); ?

   Heh.  I'm getting a little loopy already it it Friday yet?!?  ;-P



On 4/25/07, Justin Frim [EMAIL PROTECTED] wrote:


Have you considered using something other than Outlook?


Beauford wrote:

Does anyone else have this problem with the list. It seems that every
time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107


Re: [PHP] List

2007-04-25 Thread Zoltán Németh
2007. 04. 25, szerda keltezéssel 16.42-kor Daniel Brown ezt írta:
 It's those new Microsoft filters that crash on or block out anything
 mentioning open source.  Try running the following code prior to the mail
 getting to your inbox like so:
 ? str_replace(PHP,ASP,$message); ?
 
 Heh.  I'm getting a little loopy already it it Friday yet?!?  ;-P

heh that was coool :DD

sorry pal it's only wednesday...

greets
Zoltán Németh


 
 
 
 On 4/25/07, Justin Frim [EMAIL PROTECTED] wrote:
 
  Have you considered using something other than Outlook?
 
 
  Beauford wrote:
 
  Does anyone else have this problem with the list. It seems that every
  time I
  check my email there is one or more messages from the list that royally
  screws up Outlook. I usually have to delete all list messages from the
  actual server and reboot. It only happens with emails from
  [EMAIL PROTECTED]
  
  Just trying to narrow down the problem. Not sure if this is spam that's
  sneaking into the list messing things up or what.
  
  Thanks
  
  
  
 
  --
  PHP General Mailing List (http://www.php.net/)
  To unsubscribe, visit: http://www.php.net/unsub.php
 
 
 
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List

2007-04-25 Thread Richard Lynch
On Wed, April 25, 2007 2:18 pm, Chris W. Parker wrote:
 On Tuesday, April 24, 2007 6:02 PM Richard Lynch
 mailto:[EMAIL PROTECTED]
 said:

 I do not have any problems, but I'm not using Outlook, and never
 will.

 Okay...

Hey, at least I gave a suggestion how to debug the problem, unlike
*SOME* similar replies :-) :-) :-)

-- 
Some people have a gift link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Jochem Maas
Beauford wrote:
 Does anyone else have this problem with the list. It seems that every time I
 check my email there is one or more messages from the list that royally
 screws up Outlook. I usually have to delete all list messages from the
 actual server and reboot. It only happens with emails from
 [EMAIL PROTECTED]
 
 Just trying to narrow down the problem. Not sure if this is spam that's
 sneaking into the list messing things up or what.

your first problem is that your using Outlook. it may have been forced
upon you, but if you have the choice give thunderbird a twirl
(it's capable of importing all your mail, contacts and stuff btw).

your second problem smells like the old 'your PST file is too big' problem.
try archiving a load of old mail, and/or start using a fresh/new pst file, 
additionally
you may want to try the 'compress folders' option which hides out somewhere in 
the bowels
of Outlook. lastly your pst file may be plain borked - there is a command line
tool scanpst.exe which might be able to help with that.

 
 Thanks
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Wolf

Command line tool...  bork no!

UGH, *friggin muttering and more muttering*

FIRST go to Start- Control Panel - Mail
Look at the Data Files
Choose to Browse the folder
LOOK at the PST size, if it is CLOSE or OVER 2GB, start a new one, 
Outlook borks itself on a 2GB PST file


Then look at the path and copy it

THEN GO HERE:
C:\Program Files\Common Files\System\MSMapi\1033\ScanPST.exe

Give it the path you copied out, then choose one PST and run it
Go get your favorite beverage and wait
Run this tool on EVERY pst file

Then and ONLY THEN should you re-open Outlook

IF your pst file is over 2GB, go back to the Data Files (from the mail 
window I never told you to close) and make a new one
Then go to the Accounts window (from the same mail window) and set it to 
use the new PST file for your mail delivery (it'll be in the space 
underneath the list of your accounts)

=

Unless you aren't locked into Outlook, then go to http://mozilla.org and 
download and install Thunderbird

Then tell it to Import your mail and news settings after Installing it.

Wolf

Jochem Maas wrote:

Beauford wrote:

Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.


your first problem is that your using Outlook. it may have been forced
upon you, but if you have the choice give thunderbird a twirl
(it's capable of importing all your mail, contacts and stuff btw).

your second problem smells like the old 'your PST file is too big' problem.
try archiving a load of old mail, and/or start using a fresh/new pst file, 
additionally
you may want to try the 'compress folders' option which hides out somewhere in 
the bowels
of Outlook. lastly your pst file may be plain borked - there is a command line
tool scanpst.exe which might be able to help with that.


Thanks





--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-25 Thread Wolf
I wish it was Friday night, though I do have to admit I loved the code 
to fix the issue...  only he'd have to be running Procmail or something 
on a linux machine before the outlook intake.   UGH!


Zoltán Németh wrote:

2007. 04. 25, szerda keltezéssel 16.42-kor Daniel Brown ezt írta:

It's those new Microsoft filters that crash on or block out anything
mentioning open source.  Try running the following code prior to the mail
getting to your inbox like so:
? str_replace(PHP,ASP,$message); ?

Heh.  I'm getting a little loopy already it it Friday yet?!?  ;-P


heh that was coool :DD

sorry pal it's only wednesday...

greets
Zoltán Németh





On 4/25/07, Justin Frim [EMAIL PROTECTED] wrote:

Have you considered using something other than Outlook?


Beauford wrote:


Does anyone else have this problem with the list. It seems that every

time I

check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php








--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Jim Lucas

Beauford wrote:

Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks


No problems here.

--
Enjoy,

Jim Lucas

Different eyes see different things. Different hearts beat on different strings. But there are times 
for you and me when all such things agree.


- Rush

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Tijnema !

On 4/24/07, Beauford [EMAIL PROTECTED] wrote:

Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks


I'm using Gmail (Webmail) and it's fine, but i think it is a problem
because you get a lot of messages from the PHP list, you might want to
get the emails in a daily digest, instead of every single email.

Tijnema

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Wolf

Welcome to Windows

Tijnema ! wrote:

On 4/24/07, Beauford [EMAIL PROTECTED] wrote:
Does anyone else have this problem with the list. It seems that every 
time I

check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks


I'm using Gmail (Webmail) and it's fine, but i think it is a problem
because you get a lot of messages from the PHP list, you might want to
get the emails in a daily digest, instead of every single email.

Tijnema



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Zoltán Németh
2007. 04. 24, kedd keltezéssel 11.11-kor Jim Lucas ezt írta:
 Beauford wrote:
  Does anyone else have this problem with the list. It seems that every time I
  check my email there is one or more messages from the list that royally
  screws up Outlook. I usually have to delete all list messages from the
  actual server and reboot. It only happens with emails from
  [EMAIL PROTECTED]
  
  Just trying to narrow down the problem. Not sure if this is spam that's
  sneaking into the list messing things up or what.
  
  Thanks
  
 No problems here.

No problems here too (linux/evolution)

greets
Zoltán Németh

 
 -- 
 Enjoy,
 
 Jim Lucas
 
 Different eyes see different things. Different hearts beat on different 
 strings. But there are times 
 for you and me when all such things agree.
 
 - Rush
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Jim Lucas

Beauford wrote:

Does anyone else have this problem with the list. It seems that every time I
check my email there is one or more messages from the list that royally
screws up Outlook. I usually have to delete all list messages from the
actual server and reboot. It only happens with emails from
[EMAIL PROTECTED]

Just trying to narrow down the problem. Not sure if this is spam that's
sneaking into the list messing things up or what.

Thanks


Try Thunderbird ??

--
Enjoy,

Jim Lucas

Different eyes see different things. Different hearts beat on different strings. But there are times 
for you and me when all such things agree.


- Rush

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List

2007-04-24 Thread Buesching, Logan J
I use Outlook 2003 on Vista, no problem at all, non-digest mode.

-Original Message-
From: Wolf [mailto:[EMAIL PROTECTED] 
Sent: Tuesday, April 24, 2007 3:18 PM
To: Tijnema !
Cc: Beauford; PHP
Subject: Re: [PHP] List

Welcome to Windows

Tijnema ! wrote:
 On 4/24/07, Beauford [EMAIL PROTECTED] wrote:
 Does anyone else have this problem with the list. It seems that every

 time I
 check my email there is one or more messages from the list that
royally
 screws up Outlook. I usually have to delete all list messages from
the
 actual server and reboot. It only happens with emails from
 [EMAIL PROTECTED]

 Just trying to narrow down the problem. Not sure if this is spam
that's
 sneaking into the list messing things up or what.

 Thanks
 
 I'm using Gmail (Webmail) and it's fine, but i think it is a problem
 because you get a lot of messages from the PHP list, you might want to
 get the emails in a daily digest, instead of every single email.
 
 Tijnema
 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List

2007-04-24 Thread Richard Lynch
On Tue, April 24, 2007 12:53 pm, Beauford wrote:
 Does anyone else have this problem with the list. It seems that every
 time I
 check my email there is one or more messages from the list that
 royally
 screws up Outlook. I usually have to delete all list messages from the
 actual server and reboot. It only happens with emails from
 [EMAIL PROTECTED]

 Just trying to narrow down the problem. Not sure if this is spam
 that's
 sneaking into the list messing things up or what.

If Outlook is choking, perhaps try using something else to figure out
which messages it doesn't like, by reading for a while and trying
Outlook again, after you've deleted a good chunk.

If you can find a pattern, you can write a filter to get rid of the
problem messages.

I do not have any problems, but I'm not using Outlook, and never will.

-- 
Some people have a gift link here.
Know what I want?
I want you to buy a CD from some indie artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List all files in directory

2007-03-07 Thread Tijnema !

On 3/6/07, Jay Blanchard [EMAIL PROTECTED] wrote:


[snip]
Oh, yes, about that, how do you _really_ use PHP to do some reading on
the
client machine... like say. listing files... ;D
[/snip]

You're kidding, right? Here's how, set up a PHP enabled.nah, never
mind. Just repeat to yourself Dorothy, PHP is server-side, not
client-side..



Yeah that's what i tell a lot of people...

--

PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




RE: [PHP] List all files in directory

2007-03-06 Thread Jay Blanchard
[snip]
How to php give to me a list of all files in one directory to make an
editor???
[/snip]

RTFM, seriously. http://www.php.net/readdir

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List all files in directory

2007-03-06 Thread Jochem Maas
Helder Lopes wrote:
 Hi people
 
 How to php give to me a list of all files in one directory to make an
 editor???

if you can't figure out how to get a list of files from a directory
using php then how do you expect to write a fully fledged 'editor'?

RTFM ... there are examples that show you how to do exactly what your asking.

 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List all files in directory

2007-03-06 Thread Tom Chubb

On 06/03/07, Helder Lopes [EMAIL PROTECTED] wrote:

Hi people

How to php give to me a list of all files in one directory to make an
editor???



http://php.net/readdir

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List all files in directory

2007-03-06 Thread Jim Moseby
 
 Helder Lopes wrote:
  Hi people
  
  How to php give to me a list of all files in one directory 
 to make an
  editor???
 
 if you can't figure out how to get a list of files from a directory
 using php then how do you expect to write a fully fledged 'editor'?
 
 RTFM ... there are examples that show you how to do exactly 
 what your asking.
 

Who wants to bet the next question is how to list all the files on the
client's machine?

JM

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List all files in directory

2007-03-06 Thread Jay Blanchard
[snip]
Oh, yes, about that, how do you _really_ use PHP to do some reading on
the 
client machine... like say. listing files... ;D 
[/snip]

You're kidding, right? Here's how, set up a PHP enabled.nah, never
mind. Just repeat to yourself Dorothy, PHP is server-side, not
client-side..

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List all files in directory

2007-03-06 Thread Børge Holen
On Tuesday 06 March 2007 23:36, Jay Blanchard wrote:
 [snip]
 Oh, yes, about that, how do you _really_ use PHP to do some reading on
 the
 client machine... like say. listing files... ;D
 [/snip]

 You're kidding, right? Here's how, set up a PHP enabled.nah, never
 mind. Just repeat to yourself Dorothy, PHP is server-side, not
 client-side..

you think...

-- 
---
Børge
Kennel Arivene 
http://www.arivene.net
---

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List all files in directory

2007-03-06 Thread Børge Holen
On Tuesday 06 March 2007 22:34, Jim Moseby wrote:
  Helder Lopes wrote:
   Hi people
  
   How to php give to me a list of all files in one directory
 
  to make an
 
   editor???
 
  if you can't figure out how to get a list of files from a directory
  using php then how do you expect to write a fully fledged 'editor'?
 
  RTFM ... there are examples that show you how to do exactly
  what your asking.

 Who wants to bet the next question is how to list all the files on the
 client's machine?

Oh, yes, about that, how do you _really_ use PHP to do some reading on the 
client machine... like say. listing files... ;D 


 JM

-- 
---
Børge
Kennel Arivene 
http://www.arivene.net
---

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-08 Thread Robin Vickery

On 07/11/06, James Tu [EMAIL PROTECTED] wrote:

Thanks everyone for the helpful links and suggestions!

Any people here with access to a country list in Arabic or Chinese?


http://www.foreignword.com/countries/Arabic.htm

-robin

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread Robert Cummings
On Tue, 2006-11-07 at 12:40 -0500, James Tu wrote:
 Does anyone have a list of countries in a handy format for importing  
 into MySQL?  I just really need a list.  Wikipedia has a nice list,  
 but it's muddled by HTML tags.

Don't be lazy. And it's called marked up not muddled.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread rouvas
On Tuesday 07 November 2006 19:58, Robert Cummings wrote:
 On Tue, 2006-11-07 at 12:40 -0500, James Tu wrote:
  Does anyone have a list of countries in a handy format for importing
  into MySQL?  I just really need a list.  Wikipedia has a nice list,
  but it's muddled by HTML tags.

Goto: http://27.org/isocountrylist/

-Stathis



 Don't be lazy. And it's called marked up not muddled.

 Cheers,
 Rob.
 --
 ..

 | InterJinn Application Framework - http://www.interjinn.com |
 |
 ::
 :
 | An application and templating framework for PHP. Boasting  |
 | a powerful, scalable system for accessing system services  |
 | such as forms, properties, sessions, and caches. InterJinn |
 | also provides an extremely flexible architecture for   |
 | creating re-usable components quickly and easily.  |

 `'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread Richard Lynch
On Tue, November 7, 2006 11:40 am, James Tu wrote:
 Does anyone have a list of countries in a handy format for importing
 into MySQL?  I just really need a list.  Wikipedia has a nice list,
 but it's muddled by HTML tags.

 If you also have them in Chinese and Arabic that would be even better.

If you Google for ISO Country Names Codes you'll find the standard
list of countries and their 2-character codes.

I suck that down every few months in a cron job and reset my country
list in MySQL from it.

I figure nobody can expect much better than that, given how seldom a
country name changes or countries spring up out of nowhere or
disappear. [tongue firmly planted in cheek, folks!]

I'm sure somebody somewhere living in some country that does not make
the ISO list will be mad at me someday, but I dunno what else I could
do...

I'm open to suggestions, however!

And the Wikipedia list plus http://php.net/strip_tags might be better.

-- 
Some people have a gift link here.
Know what I want?
I want you to buy a CD from some starving artist.
http://cdbaby.com/browse/from/lynch
Yeah, I get a buck. So?

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread James Tu

Thanks everyone for the helpful links and suggestions!

Any people here with access to a country list in Arabic or Chinese?

-James

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] list of countries

2006-11-07 Thread bruce
ummm...

i must be missing something how is asking for the list lazy???



-Original Message-
From: Robert Cummings [mailto:[EMAIL PROTECTED]
Sent: Tuesday, November 07, 2006 9:59 AM
To: James Tu
Cc: PHP
Subject: Re: [PHP] list of countries


On Tue, 2006-11-07 at 12:40 -0500, James Tu wrote:
 Does anyone have a list of countries in a handy format for importing  
 into MySQL?  I just really need a list.  Wikipedia has a nice list,  
 but it's muddled by HTML tags.

Don't be lazy. And it's called marked up not muddled.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] list of countries

2006-11-07 Thread Robert Cummings
On Tue, 2006-11-07 at 12:12 -0800, bruce wrote:
 ummm...
 
 i must be missing something

You're missing a capitalized 'i' at the beginning of your sentence :/

  how is asking for the list lazy???

Because he saw a list, and then decided not to use it because it was
muddled by HTML tags. That part is being lazy.

At any rate, he asked for something unrelated to PHP. I'm sorry but PHP
General isn't a data warehouse.

Thank you for your concern,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread Rory Browne

A MySQL list would have been a better place for this.

Then again

Most people on the MySQL list would have known about
http://dev.mysql.com/doc/world-setup/en/world-setup.html where as
people on this are less likely to.


On 11/7/06, James Tu [EMAIL PROTECTED] wrote:

Does anyone have a list of countries in a handy format for importing
into MySQL?  I just really need a list.  Wikipedia has a nice list,
but it's muddled by HTML tags.

If you also have them in Chinese and Arabic that would be even better.

-James

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list of countries

2006-11-07 Thread James Tu
Sorry, maybe I should have posted on that list.  My post was about  
the list rather than about using MySQL.


My initial thought was that country lists would have been something  
that people in this forum would have encountered and was also hoping  
that some people here would have multi-language experience for  
country lists in other languages.


Thanks to all that have pointed me in the right direction.

-James

On Nov 7, 2006, at 4:41 PM, Rory Browne wrote:


A MySQL list would have been a better place for this.

Then again

Most people on the MySQL list would have known about
http://dev.mysql.com/doc/world-setup/en/world-setup.html where as
people on this are less likely to.


On 11/7/06, James Tu [EMAIL PROTECTED] wrote:

Does anyone have a list of countries in a handy format for importing
into MySQL?  I just really need a list.  Wikipedia has a nice list,
but it's muddled by HTML tags.

If you also have them in Chinese and Arabic that would be even  
better.


-James

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-12 Thread Richard Lynch
On Fri, August 11, 2006 8:08 am, David Robley wrote:
 Ligaya Turmelle wrote:

 tedd wrote:
 At 7:22 AM +0200 8/10/06, Paul Scott wrote:

 On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:

  Yes, but not everyone can get to or goes to conferences. And
 this
  would stand on its own don'tcha think? I think that Chicago is
  perfect, because it is centrally located (kinda') and a neat
 place to
  boot.


 Kinda...Chicago is a bit of a drive for us in Cape Town, South
 Africa... ;)

 --Paul


 Start driving now and remember to roll up the windows.

 tedd
 Wonder if I can get a scuba diving tank large enough...

 Also whether you can inflate the tyres enough to keep it afloat...

You could just by one of them boat/bus thingies they cram a bunch of
tourists onto (at least in Dublin for the Viking tour)...

If you Google for amphibious vehicles you'd probably find one for sale.

:-)

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-12 Thread Richard Lynch
On Wed, August 9, 2006 6:26 pm, Jay Blanchard wrote:
 Here is a thought that a couple of us have shared off-list; why don't
 we
 list denizens plan a get together? A face-to-face with the good, the
 bad
 and the ugly. A mano y' mano curly brace holy war. Beers and meat. The
 whole 9.2 Mb's.

 So, what say you? Shall we start a more formal process? Set a date and
 a
 place some time in the near (6 mos. or so) future? All are welcome,
 from
 the newest of new to the crotchitiest of old.

 Double-dog dare you.

On a more serious note...

It DOES seem like there is enough serious interest to followup with
this for real...

I'll be posting a new thread in seconds with some basic pre-planning
questions...

It will be titled Chicago PHP Conference

I'm using a new thread as I assume some would be interested but have
'killed' the current thread that is more humor-oriented.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-11 Thread Ligaya Turmelle

tedd wrote:

At 7:22 AM +0200 8/10/06, Paul Scott wrote:


On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:


 Yes, but not everyone can get to or goes to conferences. And this would
 stand on its own don'tcha think? I think that Chicago is perfect,
 because it is centrally located (kinda') and a neat place to boot.



Kinda...Chicago is a bit of a drive for us in Cape Town, South
Africa... ;)

--Paul



Start driving now and remember to roll up the windows.

tedd

Wonder if I can get a scuba diving tank large enough...

--

life is a game... so have fun.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] List Meeting NNOT

2006-08-11 Thread David Robley
Ligaya Turmelle wrote:

 tedd wrote:
 At 7:22 AM +0200 8/10/06, Paul Scott wrote:
 
 On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:

  Yes, but not everyone can get to or goes to conferences. And this
  would stand on its own don'tcha think? I think that Chicago is
  perfect, because it is centrally located (kinda') and a neat place to
  boot.


 Kinda...Chicago is a bit of a drive for us in Cape Town, South
 Africa... ;)

 --Paul
 
 
 Start driving now and remember to roll up the windows.
 
 tedd
 Wonder if I can get a scuba diving tank large enough...
 
Also whether you can inflate the tyres enough to keep it afloat...



Cheers
-- 
David Robley

Words are not food, though sometimes we must eat them.
Today is Pungenday, the 4th day of Bureaucracy in the YOLD 3172. 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-10 Thread Adam Zey

Paul Scott wrote:

On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:


Yes, but not everyone can get to or goes to conferences. And this would
stand on its own don'tcha think? I think that Chicago is perfect,
because it is centrally located (kinda') and a neat place to boot.



Kinda...Chicago is a bit of a drive for us in Cape Town, South
Africa... ;)

--Paul





All Email originating from UWC is covered by disclaimer http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 


It's still a bit of a drive when you live in Montreal and don't have a 
car. About an 18 hour drive, plus a few hours for bus stops and border 
crossings.


Regards, Adam Zey.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-10 Thread Jay Blanchard
[snip]
It's still a bit of a drive when you live in Montreal and don't have a 
car. About an 18 hour drive, plus a few hours for bus stops and border 
crossings.
[/snip]

That is why the Wright Brothers did what they did. ;)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-10 Thread Paul Scott


 That is why the Wright Brothers did what they did. ;)
 

I prefer the Zeppelin personally...

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] List Meeting NNOT

2006-08-10 Thread John Nichel

Adam Zey wrote:
snip
It's still a bit of a drive when you live in Montreal and don't have a 
car. About an 18 hour drive, plus a few hours for bus stops and border 
crossings.




Canadians are welcome to come?  That's it, count me out!

:-p

--
John C. Nichel IV
Programmer/System Admin (ÜberGeek)
Dot Com Holdings of Buffalo
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-10 Thread Jochem Maas
Jay Blanchard wrote:
 Here is a thought that a couple of us have shared off-list; why don't we
 list denizens plan a get together? A face-to-face with the good, the bad
 and the ugly. A mano y' mano curly brace holy war. Beers and meat. The
 whole 9.2 Mb's.
 
 So, what say you? Shall we start a more formal process? Set a date and a
 place some time in the near (6 mos. or so) future? All are welcome, from
 the newest of new to the crotchitiest of old.
 
 Double-dog dare you.

while I do enjoy the challenge of a swim accross the Atlantic, I just
cant manage to scrape together the cash to finance the support team and
the big jar of vaseline.

not to mention I'd be all wet when I arrived.

 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-10 Thread tedd

At 7:22 AM +0200 8/10/06, Paul Scott wrote:

On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:


 Yes, but not everyone can get to or goes to conferences. And this would
 stand on its own don'tcha think? I think that Chicago is perfect,
 because it is centrally located (kinda') and a neat place to boot.



Kinda...Chicago is a bit of a drive for us in Cape Town, South
Africa... ;)

--Paul


Start driving now and remember to roll up the windows.

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-10 Thread tedd

At 1:57 PM -0400 8/10/06, John Nichel wrote:

Adam Zey wrote:
snip
It's still a bit of a drive when you live in Montreal and don't 
have a car. About an 18 hour drive, plus a few hours for bus stops 
and border crossings.




Canadians are welcome to come?  That's it, count me out!

:-p



LOL, eh?

tedd
--
---
http://sperling.com  http://ancientstones.com  http://earthstones.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List Meeting NNOT

2006-08-09 Thread Richard Lynch
On Wed, August 9, 2006 6:26 pm, Jay Blanchard wrote:
 Here is a thought that a couple of us have shared off-list; why don't
 we
 list denizens plan a get together? A face-to-face with the good, the
 bad
 and the ugly. A mano y' mano curly brace holy war. Beers and meat. The
 whole 9.2 Mb's.

 So, what say you? Shall we start a more formal process? Set a date and
 a
 place some time in the near (6 mos. or so) future? All are welcome,
 from
 the newest of new to the crotchitiest of old.

 Double-dog dare you.

Isn't that what the conferences are for???

I'm happy to host a small get-together in Chicago...

I'll throw in a couple kegs of beer and some munchies at Uncommon
Ground where I work. :-)
http://uncommonground.com/

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-09 Thread Jay Blanchard
[snip]
Isn't that what the conferences are for???

I'm happy to host a small get-together in Chicago...

I'll throw in a couple kegs of beer and some munchies at Uncommon
Ground where I work. :-)
http://uncommonground.com/
[/snip]

Yes, but not everyone can get to or goes to conferences. And this would
stand on its own don'tcha think? I think that Chicago is perfect,
because it is centrally located (kinda') and a neat place to boot.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-09 Thread Robert Cummings
On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:
 [snip]
 Isn't that what the conferences are for???
 
 I'm happy to host a small get-together in Chicago...
 
 I'll throw in a couple kegs of beer and some munchies at Uncommon
 Ground where I work. :-)
 http://uncommonground.com/
 [/snip]
 
 Yes, but not everyone can get to or goes to conferences. And this would
 stand on its own don'tcha think? I think that Chicago is perfect,
 because it is centrally located (kinda') and a neat place to boot.

Sounds like fun, what kind of timeline are you imagining?

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-09 Thread Jay Blanchard
[snip]
 [snip]
 Isn't that what the conferences are for???
 
 I'm happy to host a small get-together in Chicago...
 
 I'll throw in a couple kegs of beer and some munchies at Uncommon
 Ground where I work. :-)
 http://uncommonground.com/
 [/snip]
 
 Yes, but not everyone can get to or goes to conferences. And this
would
 stand on its own don'tcha think? I think that Chicago is perfect,
 because it is centrally located (kinda') and a neat place to boot.

Sounds like fun, what kind of timeline are you imagining?
[/snip]

Sometime in the next 6 months

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Meeting NNOT

2006-08-09 Thread Paul Scott

On Wed, 2006-08-09 at 18:54 -0500, Jay Blanchard wrote:

 Yes, but not everyone can get to or goes to conferences. And this would
 stand on its own don'tcha think? I think that Chicago is perfect,
 because it is centrally located (kinda') and a neat place to boot.
 

Kinda...Chicago is a bit of a drive for us in Cape Town, South
Africa... ;)

--Paul

All Email originating from UWC is covered by disclaimer 
http://www.uwc.ac.za/portal/uwc2006/content/mail_disclaimer/index.htm 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] List Nastiness (Was: RE: [PHP] Zend Studio, phpMyAdmin, and mysql.sock)

2006-07-14 Thread Jay Blanchard
[snip]
To the rest:
There has been quite a bit of mean spiritedness on the list lately. I
don't
know if it is the weather, some strange astrological phenomenon, or
something else entirely, but can we tone it down a bit? There has been
way
too much flame war-esque behavior lately. 

We're supposed to help each other here, no? Can't we all just get along?

If someone says something nasty it's possible to just ignore it. Let it
go.
If you -need- to retort, then I would appreciate it if it was taken off
list.
[/snip]

Blow it out your socks Bear. Either that or let me see your PHP
sheriff's badge.








/you had to know that was coming

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-06 Thread Richard Lynch
On Thu, May 4, 2006 10:56 pm, Tony Aldrich wrote:

 Honestly, the easiest way to solve this is to switch to 'user' PHP
 sessions:
 http://php.net/session-set-save-handler


 Thanks. I'm trying now to do this.
 I'm wondering about session-set-save-handler - what is manual
 garbage
 collector here?
 It means I must explicitly unset all variables or something else I
 must
 do?

You'd want to delete any records from your database that are stale

This is the important part of what you were asking about in the first
place.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-06 Thread tedd

Hi:

While we're on the subject of listing sessions, what does the 
following code do?


session_start();

$path = ini_get('session.save_path');
$handle = dir($path);

while ($filename = $handle-read())
{
  if (substr($filename, 0, 5) == 'sess_')
  {
$data = file_get_contents($path/$filename);

if (!empty($data))
{
  session_decode($data);
  $session = $_SESSION;
  $_SESSION = array();
  echo(pre);
  echo Session [ . 
substr($filename, 5) . ]\n;

  print_r($session);
  echo \n--\n\n;
  echo(/pre);
}
  }
}

It looks dangerous.

tedd
--

http://sperling.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-06 Thread chris smith

On 5/7/06, tedd [EMAIL PROTECTED] wrote:

Hi:

While we're on the subject of listing sessions, what does the
following code do?

session_start();

$path = ini_get('session.save_path');
$handle = dir($path);

while ($filename = $handle-read())
{
  if (substr($filename, 0, 5) == 'sess_')
  {
$data = file_get_contents($path/$filename);

if (!empty($data))
{
  session_decode($data);
  $session = $_SESSION;
  $_SESSION = array();
  echo(pre);
  echo Session [ .
substr($filename, 5) . ]\n;
  print_r($session);
  echo \n--\n\n;
  echo(/pre);
}
  }
}


Goes through 'session.save_path' and looks for session files. If it
finds one, it opens it and prints it out.

Could be quit dangerous on a shared host, yes.

--
Postgresql  php tutorials
http://www.designmagick.com/

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-06 Thread Richard Lynch
On Sat, May 6, 2006 9:42 am, tedd wrote:
 While we're on the subject of listing sessions, what does the
 following code do?

Looks like it snoops through all the sessions it can find.

I suspect it will also NUKE the last session, where 'last' is whatever
order readdir() feels like returning, which is not defined as any
particular order...

At least, I assume that after setting $_SESSION to array() that last
time and ending, it's going to have nuked the last session...

It might actually nuke them all for that matter...

If session_decode() switches the ID around as well, then its gonna
nuke them all, no?

Maybe it's just a re-boot nuke all old sessions script...

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-04 Thread Joe Wollard

If you store your sessions in a database then your could gain a little mode
control over your session, but I think what you're asking is if there's a
way to tell if a user has closed the browser thus killing the session on
their side. If that's what you're asking then the answer is not going to lie
strictly with PHP as the server has no way to ping a user's browser. A quick
hack off the top of my head might be to find a creative way of using the
onBeforePageUnload() (or w/e it is) javascript function along with frames.

Anyway, you can check out php.net for more details on how to use a database
for session storage:
http://www.php.net/manual/en/function.session-set-save-handler.php

Cheers,
- Joe


On 5/4/06, Tony Aldrich [EMAIL PROTECTED] wrote:


Well, I mean visitors of site. They can open it in several windows or in
several browsers. I understand that each browser on a machine will be a
session (in simple explanation). And for all of them I create some info in
database. Then they close browser. I must clean up unused info.
That's why I want to query alive sessions. Or query their death time
(timeout).
I thought of something like

$sess=get_session_list();

or

$isalive=is_session_alive($session_id);

Thanks.



On 5/4/06, Gerry D [EMAIL PROTECTED] wrote:

 Can you have more than 1 session?

 On 5/2/06, Tony Aldrich [EMAIL PROTECTED] wrote:
  Good day,
  Does anybody know how to get a list of current sessions?
  I need to clear some database rows that where associated with some
SID.
  Can it be done without probing of maxlifetime?





Re: [PHP] List of sessions

2006-05-04 Thread Tony Aldrich

Thanks all for explanations.
I'll try to use callback functions.

Tony.

On 5/4/06, Joe Wollard [EMAIL PROTECTED] wrote:


If you store your sessions in a database then your could gain a little
mode control over your session, but I think what you're asking is if there's
a way to tell if a user has closed the browser thus killing the session on
their side. If that's what you're asking then the answer is not going to lie
strictly with PHP as the server has no way to ping a user's browser. A quick
hack off the top of my head might be to find a creative way of using the
onBeforePageUnload() (or w/e it is) javascript function along with frames.

Anyway, you can check out php.net for more details on how to use a
database for session storage: 
http://www.php.net/manual/en/function.session-set-save-handler.php


Cheers,
- Joe



On 5/4/06, Tony Aldrich [EMAIL PROTECTED] wrote:

 Well, I mean visitors of site. They can open it in several windows or in
 several browsers. I understand that each browser on a machine will be a
 session (in simple explanation). And for all of them I create some info
 in
 database. Then they close browser. I must clean up unused info.
 That's why I want to query alive sessions. Or query their death time
 (timeout).
 I thought of something like

 $sess=get_session_list();

 or

 $isalive=is_session_alive($session_id);

 Thanks.



 On 5/4/06, Gerry D [EMAIL PROTECTED] wrote:
 
  Can you have more than 1 session?
 
  On 5/2/06, Tony Aldrich [EMAIL PROTECTED] wrote:
   Good day,
   Does anybody know how to get a list of current sessions?
   I need to clear some database rows that where associated with some
 SID.
   Can it be done without probing of maxlifetime?
 





Re: [PHP] List of sessions

2006-05-04 Thread Richard Lynch
On Wed, May 3, 2006 11:29 pm, Tony Aldrich wrote:
 Well, I mean visitors of site. They can open it in several windows or
 in
 several browsers. I understand that each browser on a machine will be
 a
 session (in simple explanation). And for all of them I create some
 info in
 database. Then they close browser. I must clean up unused info.
 That's why I want to query alive sessions. Or query their death time
 (timeout).
 I thought of something like

 $sess=get_session_list();

 or

 $isalive=is_session_alive($session_id);

Honestly, the easiest way to solve this is to switch to 'user' PHP
sessions:
http://php.net/session-set-save-handler

Once you do that, you're already nuking the actual session data for
expired sessions in your database, and you can delete anything else in
parallel.

Your only other option would be to troll through /tmp looking for PHP
session filenames that match the session ID or whatever, and then
searching your database for IDs that aren't listed in there, and...

You'd probably end up with a race condition sooner or later, and this
would be dog-slow if you have lots of visitors, and you really don't
want to do it this way.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List of sessions

2006-05-04 Thread Tony Aldrich


Honestly, the easiest way to solve this is to switch to 'user' PHP
sessions:
http://php.net/session-set-save-handler



Thanks. I'm trying now to do this.
I'm wondering about session-set-save-handler - what is manual garbage
collector here?
It means I must explicitly unset all variables or something else I must
do?



Once you do that, you're already nuking the actual session data for

expired sessions in your database, and you can delete anything else in
parallel.

Your only other option would be to troll through /tmp looking for PHP
session filenames that match the session ID or whatever, and then
searching your database for IDs that aren't listed in there, and...



Yes, I've tried this already - as a quick solve.
I found out that session_save_path() returns null ander Windows (where I'm
testing) and real folder on host side.
And this means that I must use Windows temp folder and don't forget to
filter files as 'sess_*'.

Tony.


Re: [PHP] List of sessions

2006-05-03 Thread Tony Aldrich

Well, I mean visitors of site. They can open it in several windows or in
several browsers. I understand that each browser on a machine will be a
session (in simple explanation). And for all of them I create some info in
database. Then they close browser. I must clean up unused info.
That's why I want to query alive sessions. Or query their death time
(timeout).
I thought of something like

$sess=get_session_list();

or

$isalive=is_session_alive($session_id);

Thanks.



On 5/4/06, Gerry D [EMAIL PROTECTED] wrote:


Can you have more than 1 session?

On 5/2/06, Tony Aldrich [EMAIL PROTECTED] wrote:
 Good day,
 Does anybody know how to get a list of current sessions?
 I need to clear some database rows that where associated with some SID.
 Can it be done without probing of maxlifetime?



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Richard Lynch
On Mon, April 24, 2006 11:24 am, Paul Novitski wrote:
 At 06:29 AM 4/24/2006, Philip Thompson wrote:
I think you are too kind. I think my response would have been likes
Jay's... RTFM. However, you went above and beyond. Isn't this
listserv great!! =D


 Thanks, Philip.  There may or may not be such a thing as stupid
 questions but there sure as hell are a lot of stupid answers.  We all

I also always try to assume the best possible scenario for the
original poster -- well, I TRY anyway.

For exmaple, the OP in this thread MIGHT be trying to parse HTML
scraped off of somebody else's site, and s/he has no control
whatsoever over the crap HTML in it.

So even this GREAT answer could have been improved by something like:

If this is HTML code you are responsible for generating

Anyway, assuming that the person posting HAS done their best (whatever
that might mean) and trying to help them seems a lot less stressful
(to me as the answerer) than just posting RTFM all the time.

Obviously, we all lose it at some point, but I long ago realized
that assuming the bad posts were the best efforts of the people
posting was a lot better for my own sanity than the other options.

And, of course, there are certain individuals whose posts I just
delete, due to a proven inability, from post after post, to make any
attempt at all to do even the simplest search for their info.

Though there was that one poster whose employer wouldn't let them surf
to the outside world...  I almost kinda felt sorry for them and their
posts.  Not sorry enough to do their job for them, mind you. :-)

I also recall some of MY first posts to the PHP list, back when there
was only one list.

I can guarantee you that some of them got (and deserved!) RTFM answers!

But the generosity of others in more directed RTFM answers with links,
or with specific search terms, or even generalized guidelines got me
through.

'Course, I daresay there are some readers right now wishing I'd been
chased away way back when, but so it goes. :-)

Well you can't please everybody, so you've got to please yourself.

YMMV IANAL

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Ma Siva Kumar
On Mon April 24 2006 9:54 pm, Paul Novitski wrote:
 Rushed, grumpy defender of the underdog,

 Paul

For those of you who are making a joke out of my question, glad to have 
given you all a laugh.  I want to thank everyone else for being so nice and 
helpful to beginners.

Lisa


I am not an active participant in this list. But I learn a lot just reading 
the messages. I also read messages in pgsql-general@postgresql.org . There, 
even stupid, unresearched questions get serious answers with just gentle 
nudges. 

Just follow this thread. The question was:

Quote:
Subject: to know

Message:
hello guys,
what do u think about the near future of postgre?
what is the latest version of postgre? and how it differ from the oldone?
who is the leading person on postgre?
Unquote

http://archives.postgresql.org/pgsql-general/2006-04/msg01018.php

Have a look at the replies. A study in good manners.

Best regards,


Ma Sivakumar


-- 
Integrated Management Tools for leather industry
--
http://www.leatherlink.net

Ma Siva Kumar,
BSG LeatherLink (P) Ltd,
IT Solutions for Leather Industry,
Chennai - 600087
Tel : +91 44 55191757

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread T.Lensselink
Don't know about the postgre list. But answers to such questions can
easilly be found on the web. Just use google or RTFM. I answered because i
like to help. Hope it was helpfull :) But i can also understand the
laughter/frsustration. Don't take it to personal.

They just encourage you to RTFM. Best practise and best way to learn. Let
them help with real problems and not something you can easily find
yourself.
This list is great!

grt,
Thijs



 On Mon April 24 2006 9:54 pm, Paul Novitski wrote:
 Rushed, grumpy defender of the underdog,

 Paul

For those of you who are making a joke out of my question, glad to have
given you all a laugh.  I want to thank everyone else for being so nice
 and
helpful to beginners.

Lisa


 I am not an active participant in this list. But I learn a lot just
 reading
 the messages. I also read messages in pgsql-general@postgresql.org .
 There,
 even stupid, unresearched questions get serious answers with just gentle
 nudges.

 Just follow this thread. The question was:

 Quote:
 Subject: to know

 Message:
 hello guys,
 what do u think about the near future of postgre?
 what is the latest version of postgre? and how it differ from the oldone?
 who is the leading person on postgre?
 Unquote

 http://archives.postgresql.org/pgsql-general/2006-04/msg01018.php

 Have a look at the replies. A study in good manners.

 Best regards,


 Ma Sivakumar


 --
 Integrated Management Tools for leather industry
 --
 http://www.leatherlink.net

 Ma Siva Kumar,
 BSG LeatherLink (P) Ltd,
 IT Solutions for Leather Industry,
 Chennai - 600087
 Tel : +91 44 55191757

 --
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Leonard Burton
Hi guys,

RTFM answers with links to the info are fine.

I neverminded something like RTFM http://www.php.net/switch.

I have found that finding the easier answers can be the most
difficult.  I have been doing PHP for  3 years.  Sometimes there is
something simple about a function I cannot quite get.  How does an
RTFM answer help?   It does not.

An answer with the link, or exact google keywords is always more helpfull.

From pressing a few posters of RTFM answers in other projects' forums
I have found out two things:

1) most of them are script kiddies.
2) most of them do not know the answer.

They think it is more fun to post the RTFM than to not respond.

--
Leonard Burton, N9URK
[EMAIL PROTECTED]

The prolonged evacuation would have dramatically affected the
survivability of the occupants.

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Robert Cummings
On Tue, 2006-04-25 at 08:45, Leonard Burton wrote:
 From pressing a few posters of RTFM answers in other projects' forums
 I have found out two things:
 
 1) most of them are script kiddies.
 2) most of them do not know the answer.
 
 They think it is more fun to post the RTFM than to not respond.

And on the flip side of the coin, some of us here on the PHP list have
been around so long that we've seen the same simple, it's in the FM
question rehashed over and over and over AND OVER again. When someone
brings it up again it just means that rather than use the manual,
archives, google, their brain, their own time, they want us to do their
work for them... and unlike weberdev we aren't getting paid to cater to
idiots.

If you carefully comb the archives you'll see that many of us that make
quite liberal use of RTFM also quite often give answers to the same
simple questions, and often quite recently.

I don't remember who's tagline it is... but here the teach a man to
fish pearl of wisdom applies -- even if sometimes you have to club him
over the head with it.

Cheers,
Rob.
-- 
..
| InterJinn Application Framework - http://www.interjinn.com |
::
| An application and templating framework for PHP. Boasting  |
| a powerful, scalable system for accessing system services  |
| such as forms, properties, sessions, and caches. InterJinn |
| also provides an extremely flexible architecture for   |
| creating re-usable components quickly and easily.  |
`'

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-25 Thread Ahmed Saad
On 4/25/06, Robert Cummings [EMAIL PROTECTED] wrote:
 If you carefully comb the archives you'll see that many of us that make
 quite liberal use of RTFM also quite often give answers to the same
 simple questions, and often quite recently.

That's a _quite_ true statement, I think :)


I have been reading the list for around a year now but unfortunately I
haven't really been active. I think maybe we can handle the
newbie-style of threads with a protocol (a stateless one is much
recommended ;)

a) Write a short answer or a pointer to some page about the subject
(where an answer could be found. Same applies to the PHP manual)
b) Write a pointer to a How-to-ask-questions-the-smart-way-style
document, gently pointing out what was wrong.

RTFMs may be well deserved if the come back doing it again (which
doesn't happen that often)


Regards,
Ahmed


RE: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-24 Thread Jay Blanchard
[snip]
I'm here for PHP.  I love the wit, humor, intelligence, and passion 
of the list debates, but I'm working my butt off earning my living 
writing software and simply don't have time to scroll down through 
some enormous unsnipped quote simply to find thanks! or you 
weenie! at the bottom.
[/snip]


Whew! I snipped, bottom-posted, and included a link to a spot in the
manual where the OP could learn. I'm golden!

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list noise [WAS: How to find img tag and get src of image]

2006-04-24 Thread John Nichel

Jay Blanchard wrote:
snip

I'm golden!



I don't remember asking for a list of your sexual perversions.

:-p

--
John C. Nichel IV
Programmer/System Admin (ÜberGeek)
Dot Com Holdings of Buffalo
716.856.9675
[EMAIL PROTECTED]

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list days between two dates

2006-02-24 Thread tedd

Anyony know a funtction to do this?
I need to popup a select with the dates.

thank's
Pol


Pol:

Try this:

http://www.weberdev.com/get_example-4330.html

tedd
--

http://sperling.com

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list a query

2005-12-30 Thread Richard Lynch
On Wed, December 28, 2005 5:53 am, Ross wrote:
 What does 'list' do in a php query?

'list' is kind of like an array de-constuctor.

?php
$example = array(1, 2, 3);
list($x, $y, $z) = $example;
echo x: $x y: $y z: $z\n\n;
?
x: 1 y: 2 z: 3

 $result = mysql_query($query) or die('Error, query failed');
 list($name, $type, $size, $content) = mysql_fetch_array($result);

$result is an array:

array('Ross', 'Hosting Company', 'Comfy', 'aztechost.com');

'list' is tearing that array apart into individual variables.

-- 
Like Music?
http://l-i-e.com/artists.htm

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list a query

2005-12-28 Thread Jochem Maas

Ross wrote:

What does 'list' do in a php query?


there is no such thing a php query (unless you count asking a pph
related question). list() is a language construct
an explanation of it can be found in the manual

http://php.net/list

please always read/search the manual before asking question.



$result = mysql_query($query) or die('Error, query failed');
list($name, $type, $size, $content) = mysql_fetch_array($result);


found it in this example...

http://www.php-mysql-tutorial.com/php-mysql-upload.php 



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] List Usage WAS Forwarding $_POST Values

2005-12-09 Thread Jay Blanchard
[snip]
Well if you were not rude then you certainly are now - 
Too much correspondence with you in that vein could contaminate the
environment. chuckles
Also sounds like you have a few prejudices to grow out of .. who would you
like to be when you grow up?
BTW
I suggest you use a dictionary if you cannot use a spellchecker.
[/snip]

Sure, too much correspondence in the vein of the e-mail I just posted could
be just very contaminating. How do you respond to someone who calls you a
smug prick? ROFLMMFAO! As for who I want to be when I grow up; I want to
be someone who does not hide behind an anonymous e-mail address while
critiquing someone for supplying terse, but otherwise helpful, answers to
others here for several years. Oh, wait 

Would my original reply have been any better if I had said RTFM, STFA, or
STFW? I usually get taken to task for that as well. 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] list down

2005-02-27 Thread AdamT
Your email ended up in my gmail spam box.  That should tell you something.


On Fri, 25 Feb 2005 16:04:24 -0800, Tyler Replogle [EMAIL PROTECTED] wrote:
 I think it didn't because i wasn't getting an emails for a while last night.
 I wanted one too becuase i didn't have the email to start a new message.


-- 
AdamT
Justify my text?  I'm sorry, but it has no excuse.

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] List gone quiet?

2005-02-25 Thread dpgirago
Nothing on list over night?

-- 
Lester Caine



Nope, so I had to do real work this mourning (sic).

David

Re: [PHP] List gone quiet?

2005-02-25 Thread Danny Brow
On Fri, 2005-02-25 at 11:13 +, Lester Caine wrote:
 Nothing on list over night?


It's a PHP fast :)

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] list down

2005-02-25 Thread Tyler Replogle
I think it didn't because i wasn't getting an emails for a while last night. 
I wanted one too becuase i didn't have the email to start a new message.

From: Kris [EMAIL PROTECTED]
To: php-general@lists.php.net
Subject: [PHP] list down
Date: Thu, 24 Feb 2005 15:04:31 -0600
MIME-Version: 1.0
Received: from lists.php.net ([216.92.131.4]) by mc10-f14.hotmail.com with 
Microsoft SMTPSVC(6.0.3790.211); Fri, 25 Feb 2005 09:04:52 -0800
Received: from ([216.92.131.4:18799] helo=lists.php.net)by pb1.pair.com 
(ecelerity HEAD r(5124)) with SMTPid 13/69-51537-6096F124 for 
[EMAIL PROTECTED]; Fri, 25 Feb 2005 13:05:58 -0500
Received: (qmail 92239 invoked by uid 1010); 25 Feb 2005 16:38:08 -
Received: (qmail 94944 invoked by uid 1010); 25 Feb 2005 15:59:00 -
X-Message-Info: JGTYoYF78jH/nHL12+6B+afltd+ugzie6PM4BHsyhVg=
Return-Path: [EMAIL PROTECTED]
X-Host-Fingerprint: 216.92.131.4 lists.php.net  Mailing-List: contact 
[EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
list-help: mailto:[EMAIL PROTECTED]
list-unsubscribe: mailto:[EMAIL PROTECTED]
list-post: mailto:php-general@lists.php.net
Delivered-To: mailing list php-general@lists.php.net
Delivered-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
X-Host-Fingerprint: 65.24.5.135 ms-smtp-01-smtplb.ohiordc.rr.com NetCache 
Data OnTap 5.x
User-Agent: Mozilla/5.0 (Windows; U; Win98; en-US; rv:1.6b) Gecko/20031205 
Thunderbird/0.4
X-Accept-Language: en-us, en
X-Virus-Scanned: Symantec AntiVirus Scan Engine
X-OriginalArrivalTime: 25 Feb 2005 17:04:52.0078 (UTC) 
FILETIME=[1EFD38E0:01C51B5C]

sent an email to the list earlier.. never received a copy.. its like the 
list went down around 8AM CST?

--
No virus found in this outgoing message.
Checked by AVG Anti-Virus.
Version: 7.0.300 / Virus Database: 266.4.0 - Release Date: 2/22/05
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


RE: [PHP] List gone quiet?

2005-02-25 Thread Tyler Replogle
Yeah same here. I think it went down.
From: Lester Caine [EMAIL PROTECTED]
To: php-general@lists.php.net
Subject: [PHP] List gone quiet?
Date: Fri, 25 Feb 2005 11:13:50 +
MIME-Version: 1.0
Received: from lists.php.net ([216.92.131.4]) by mc9-f30.hotmail.com with 
Microsoft SMTPSVC(6.0.3790.211); Fri, 25 Feb 2005 11:05:44 -0800
Received: from ([216.92.131.4:4641] helo=lists.php.net)by pb1.pair.com 
(ecelerity HEAD r(5124)) with SMTPid 08/9C-51537-6077F124 for 
[EMAIL PROTECTED]; Fri, 25 Feb 2005 14:05:42 -0500
Received: (qmail 60156 invoked by uid 1010); 25 Feb 2005 17:04:47 -
Received: (qmail 10446 invoked by uid 1010); 25 Feb 2005 16:13:18 -
X-Message-Info: 6sSXyD95QpXynrcVtRJuLWY8uUBJBJyjnCsL5m3ygVM=
Return-Path: [EMAIL PROTECTED]
X-Host-Fingerprint: 216.92.131.4 lists.php.net  Mailing-List: contact 
[EMAIL PROTECTED]; run by ezmlm
Precedence: bulk
list-help: mailto:[EMAIL PROTECTED]
list-unsubscribe: mailto:[EMAIL PROTECTED]
list-post: mailto:php-general@lists.php.net
Delivered-To: mailing list php-general@lists.php.net
Delivered-To: [EMAIL PROTECTED]
Delivered-To: [EMAIL PROTECTED]
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.0; en-US; rv:1.7.2) 
Gecko/20040803
X-Accept-Language: en, en-us
X-Posted-By: 81.138.11.136
X-OriginalArrivalTime: 25 Feb 2005 19:05:44.0362 (UTC) 
FILETIME=[01AFF0A0:01C51B6D]

Nothing on list over night?
--
Lester Caine
-
L.S.Caine Electronic Services
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


Re: [PHP] List of Dates Grouped by Week

2004-10-26 Thread John Nichel
Shaun wrote:
Hi,
I am creating an online timesheet application. Most parts are done, however 
I have a problem displaying a list of unapproved timesheets.

Here is my timesheet table:
mysql DESCRIBE Timesheets;
+---+-+--+-+++
| Field | Type| Null | Key | Default| Extra 
|
+---+-+--+-+++
| Timesheet_ID  | int(11) |  | PRI | NULL   | auto_increment 
|
| Type  | varchar(40) | YES  | | NULL   | 
|
| Project_ID| int(11) | YES  | | NULL   | 
|
| User_ID   | int(11) |  | | 0  | 
|
| Hours | float   |  | | 0  | 
|
| Date  | date|  | | -00-00 | 
|
| Status| varchar(40) | YES  | | Open   | 
|
+---+-+--+-+++

When a timesheet is submitted for approval the manager logs in and approves 
/ rejects the timesheets. How can I display a list of unapproved timesheets 
grouped by week and user?
Write a SQL statement?
http://dev.mysql.com/doc/mysql/en/index.html
http://lists.mysql.com/
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php


  1   2   3   >