php-general Digest 13 Aug 2006 18:32:55 -0000 Issue 4291

2006-08-13 Thread php-general-digest-help
php-general Digest 13 Aug 2006 18:32:55 - Issue 4291 Topics (messages 240596 through 240600): Re: SETCOOKIE 240596 by: Peter Lauri Re: New Large Scale Project. 240597 by: Wesley Acheson Re: OT? Verifying mail was received 240598 by: tedd PHP 4.4.4RC1 released

RE: [PHP] SETCOOKIE

2006-08-13 Thread Peter Lauri
[snip] On Sat, August 12, 2006 8:00 am, Peter Lauri wrote: When you just use time() you tell the cookie to just live until now, so it dies directly. You have to add some seconds to determine how long the cookie will live. Unfortunately, no... The above solution relies on the USER computer

Re: [PHP] New Large Scale Project.

2006-08-13 Thread Wesley Acheson
Its not actually a dating site. :) However it does look like the site that you have given has some intresting resources. Thanks for your time. Regards, Wes On 8/13/06, tedd [EMAIL PROTECTED] wrote: I'm looking to do a fairly large scale project. The problem is I don't know how much of it to

Re: [PHP] OT? Verifying mail was received

2006-08-13 Thread tedd
At 4:24 PM -0500 8/12/06, Richard Lynch wrote: On Thu, August 10, 2006 9:59 pm, tedd wrote: Not a php solution, but send them all a buck via PayPal. For $90 you'll learn if their email addresses are correct. This assumes a much higher market penetration for PayPal than it has, I think...

[PHP] PHP 4.4.4RC1 released

2006-08-13 Thread Derick Rethans
Hello! PHP 4.4.4RC1 has been packaged and can be found here: - http://downloads.php.net/derick/php-4.4.4RC1.tar.bz2 MD5 (php-4.4.4RC1.tar.bz2) = bb89d67c3a011229adea6c31aae6751b - http://downloads.php.net/derick/php-4.4.4RC1.tar.gz MD5 (php-4.4.4RC1.tar.gz) = 13d41fcc56bb5e164c488575a0b96e59

Re: [PHP] Re: Internet Explorer doesn't display UTF-8 page using UTF-8 encoding

2006-08-13 Thread tedd
At 6:48 PM -0700 8/12/06, Rasmus Lerdorf wrote: By the way, everyone should be setting a charset. If you don't set it, IE will look at the first 4k of the body of the page and take a wild guess. -Rasmus -Rasmus: Ok, but why doesn't w3c use it? http://validator.w3.org/ (check source)

Re: [PHP] Re: Internet Explorer doesn't display UTF-8 page using UTF-8 encoding

2006-08-13 Thread Rasmus Lerdorf
tedd wrote: At 6:48 PM -0700 8/12/06, Rasmus Lerdorf wrote: By the way, everyone should be setting a charset. If you don't set it, IE will look at the first 4k of the body of the page and take a wild guess. -Rasmus -Rasmus: Ok, but why doesn't w3c use it? http://validator.w3.org

Re: [PHP] How to run one php app from another?

2006-08-13 Thread Gerry D
I don't know if you solved this already, but I use it to redirect to different pages depending on whther the user is logged in or not. Something like header(location:/page/?p=login); works fine. You were on the right track. Gerry On 6/15/06, tedd [EMAIL PROTECTED] wrote: Hi gang: This seems

RE: [PHP] New Large Scale Project.

2006-08-13 Thread Jay Blanchard
[snip] My other problem is even though I'm confident coding I find design very difficult I've a good idea of how the website would work but only in general terms. [/snip] Have you ever sat down wit paper and pencil (or Excel or any number of other tools) and attempted to flowchart a project? It

RE: [PHP] Chicago PHP Conference

2006-08-13 Thread Jay Blanchard
[snip] I'm in the pre-planning phase of organizing a PHP Conference in Chicago. [/snip] Capital idea Richard, thanks for making this more formal. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] I am receiving multiple same emails!!!

2006-08-13 Thread Karl James
Team, I unsubscribe and subscribe later on. I am still receiving multiple emails from the same user. How do I stop this madness. I do not want to unsubscribe from This mailing list. Karl James (TheSaint) mailto:[EMAIL PROTECTED] [EMAIL PROTECTED] mailto:[EMAIL PROTECTED] [EMAIL

Re: [PHP] Re: How to run one php app from another? RECAP

2006-08-13 Thread Gerry D
On 6/16/06, tedd [EMAIL PROTECTED] wrote: At 2:35 PM +0200 6/16/06, Barry wrote: But once output is made. You can't remove it. That isn't possible with PHP. I think I get it now. PHP does everything before the user see's anything. Any links (direct or via a form) are objects that the browser

Re: [PHP] page redirecting

2006-08-13 Thread Gerry D
On 6/28/06, Richard Lynch [EMAIL PROTECTED] wrote: On Wed, June 28, 2006 5:17 am, kristianto adi widiatmoko wrote: i need to redirecting page, it could be done by using header function like this header(Location : page2.php?var1=foo); Then, the URL should be a full, complete URL, and not

Re: [PHP] Preventing double-clicks

2006-08-13 Thread Gerry D
Jay, I use a technique to prevent hitting the back button and resubmitting data. I use a 2-script process, one with the form and submit button (I set a session var here), and a second form (the action script). The action script makes sure the session variable is set, processes the info, then

Re: [PHP] I am receiving multiple same emails!!!

2006-08-13 Thread Chris
Karl James wrote: Team, I unsubscribe and subscribe later on. I am still receiving multiple emails from the same user. From this mailing list or from a particular subscriber? -- Postgresql php tutorials http://www.designmagick.com/ -- PHP General Mailing List (http://www.php.net/) To

Re: [PHP] Unicode

2006-08-13 Thread Ligaya Turmelle
tedd wrote: At 7:08 PM -0700 6/4/06, Rasmus Lerdorf wrote: Larry Garfield wrote: In C or C++, yes. In PHP, do not assume the same string-number mapping. Numeric definition is irrelevant. Right, and now bring Unicode into the picture and this becomes even more true. -Rasmus I know

Re: [PHP] I am receiving multiple same emails!!!

2006-08-13 Thread Chris
Karl James wrote: Chris, I am not sure. How do I find out? I am looking in the header and I see this. - From: [EMAIL PROTECTED] To Karl James CC [EMAIL PROTECTED] Subject Re:[PHP] I am receiving multiple same emails.

Re: [PHP] Functions

2006-08-13 Thread Gerry D
On 6/30/06, Richard Lynch [EMAIL PROTECTED] wrote: #2. Don't alter the case of the input data, if at all possible. Accept what the user has given, and take it as it is. You can make your application not care about case, and you can format the case on ouput (maybe even with fancy CSS stuff) but

Re: [PHP] Problem Creating a New SSL Cert in Apache2

2006-08-13 Thread Chris
Mike wrote: Windows Server Apache2 OpenSSL I am new to working with SSL Certs so I am sure I did something wrong somewhere. Where I have no idea! We needed an SSL Cert for our website. I created the CSR using openssl req -new -out uwm.csr answered all of the questions, went to GoDaddy

Re: [PHP] Compiling and iconv

2006-08-13 Thread Chris
Ray Hauge wrote: I use Slackware linux, and XMLRPC is not compiled in by default with my distro, so I'm compiling PHP myself. It's always been a simple enough task. First I get and install the required xmlrpc-epi libraries, and then I compile PHP telling it where I just installed them. Now

[PHP] RE: non-text data

2006-08-13 Thread John Meyer
Gd, BTW, came into this late, have we gotten the old store your images in the filesystem and save the file name in the database argument yet? -Original Message- From: Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem [mailto:[EMAIL PROTECTED] Sent: Sunday,

Re: [PHP] RE: non-text data

2006-08-13 Thread Chris
John Meyer wrote: Gd, BTW, came into this late, have we gotten the old store your images in the filesystem and save the file name in the database argument yet? Nope, haven't done that one yet, do you want to start it off or shall I? ;) -- Postgresql php tutorials http://www.designmagick.com/

RE: [PHP] RE: non-text data

2006-08-13 Thread John Meyer
Depends on how pugnacious I'm feeling, awscrewit, you go for it. -Original Message- From: Chris [mailto:[EMAIL PROTECTED] Sent: Sunday, August 13, 2006 10:41 PM To: John Meyer Cc: 'Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem'; '[php] PHP General List'