[PHP] Flash call erase my session

2001-03-11 Thread Pierre-Yves Lemaire
? __ Pierre-Yves Lemaire 514.729.8100

Re: [PHP] Need to download files in IE

2001-03-12 Thread Pierre-Yves Lemaire
Hello, I do that with this piece of code. ( This will close the window, so open a new one and put this code inside) header("Content-disposition: attachment; filename=\"$fileName\""); header("Content-type: application-download"); header("Pragma: no-cache"); header("Expires: 0"); $fn=fopen($FileNa

Re: [PHP] Getting path of script

2001-03-13 Thread Pierre-Yves Lemaire
check out, dirname() // Returns directory name component of path py - Original Message - From: Hardy Merrill <[EMAIL PROTECTED]> To: Jordan Elver <[EMAIL PROTECTED]> Cc: <[EMAIL PROTECTED]> Sent: Tuesday, March 13, 2001 5:21 PM Subject: Re: [PHP] Getting path of script > How 'bout usin

[PHP] header type for flash

2001-03-14 Thread Pierre-Yves Lemaire
movie ? py __ Pierre-Yves Lemaire 514.729.8100

Re: [PHP] Print MySQL DB as Exel File?

2001-03-14 Thread Pierre-Yves Lemaire
Hello, The header will make netscape offer you a download of the file, and IE will open it in a excell format. For the display, just put your result in a nice html table and excell will convert it, it's quite simple. print ""; print "Event"; ... print all your header here while ($row = mysql_f

Re: [PHP] 3 situations - PHP Power or... servlet(JSP) power ?

2001-03-15 Thread Pierre-Yves Lemaire
code, code that is easier to modify and code that is probably faster no matter what technology you use. Pierre-Yves - Original Message - From: Marian Vasile <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 15, 2001 5:59 PM Subject: [PHP] 3 situations -

Re: [PHP] Benchmarks

2001-03-16 Thread Pierre-Yves Lemaire
Third one would be http://apc.communityconnect.com/ ?? py - Original Message - From: Chris Adams <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, March 16, 2001 3:37 PM Subject: Re: [PHP] Benchmarks > On 16 Mar 2001 04:39:06 -0800, Phil Driscoll <[EMAIL PROTECTED]> wrote: > >

Re: [PHP] Login System with access levels

2001-03-16 Thread Pierre-Yves Lemaire
One solution: You set up a separate table: user_level { level_id (unsigned int), level_description (varchar 100 )} it looks like this: level_idlevel_description 100 admin 200user In your user table you add level_id as a field. After a good validation of the user (username an

Re: [PHP] Remember my username & password

2001-03-19 Thread Pierre-Yves Lemaire
The answer, like yahoo, is to also store the username and password in a database. When the cookie is not set or the option not checked, you will use a database to validate the username and password. You will build a session only if the username and password are matched in the database. py - O

Re: [PHP] Header Problem

2001-03-21 Thread Pierre-Yves Lemaire
Hello, Yes this should work, but if like me, you still have no redirection and you are working with IE 4.0, put exit; after header. $URL="domain.com"; header ("Location: Http://www.$URL/members/index.php"); exit; I have not seen this anywhere, but putting exit; after a redirection was the only wa

Re: [PHP] Job in Whistler, BC

2001-04-17 Thread Pierre-Yves Lemaire
e, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > > To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >F

RE: [PHP] a bit off the list but....

2001-05-01 Thread Pierre-Yves Lemaire
eaching the goal you set for >yourself" > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] + ===

Re: [PHP] php/mySql SELECT where clause using dates.

2001-05-03 Thread Pierre-Yves Lemaire
= >I haven't lost my mind, I've got it backed up on TAPE somewhere... > > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >T

[PHP] Re: [PHP-DEV] Re: RFE: $HTTP_POST_VARS =& $_POST;

2002-01-24 Thread Pierre-Alain Joye
On Thu, 24 Jan 2002 15:45:34 -0800 Mike Eheler <[EMAIL PROTECTED]> wrote: > I disagree based simply on two points: > > a) Ideally, the $HTTP_POST/GET and $_POST/$_GET vars should be treated > as "read only". I tell more : MUST be treated as readonly, as for every env/server or whatever you want

[PHP] Is the $this variable affectation authorized (clean enough)?

2002-03-22 Thread Jean-Pierre Arneodo
Hi, is the $this variable affectation authorized (clean enough)? It's works in 4.1.x, but next php versions... class X { function polymorph($class){ // Backup vars here $this=new $class(); // Restore vars here } } What is the usage?

[PHP] What to use when HTTP_REFERER is not set?

2001-11-03 Thread Pierre-Yves Lemaire
Hello, I need to put a small security feature in one of my page. The page is open as a popup from another web site. By checking the referer I tought I could block any other call to this page but the referer variable is often not set... What else could I do? ( no ssl so far is available for this :

[PHP] Memory upload question..

2001-11-22 Thread Pierre-Yves Lemaire
do you have a tip to upload big files without the hassle of having php crunch so much memory? If I upload, say, 20 MB of data, my script process will end up using 20 MB of memory. I think it stores all received data in memory and then flushes it in the temp file at the end. Regards, -- PHP Ge

[PHP] mysql_select_db doesn't change db on expected link, bug?

2001-12-26 Thread Jean-Pierre Arneodo
The function mysql_select_db set the db for one or for all link identifiers? The table my_table is in db1 but the active database seems to be test on link #8. Here the result with PHP 4.1.0 and MySQL 3.23.41-log: mysql_pconnect() id1=Resource id #8 mysql_select_db(db1,Resource id #8) mysql_pcon

Re: [PHP] random letters and numbers

2001-03-24 Thread Pierre-Yves Lemaire
ad it have it be deleted off the server? > > >thanks > >randy > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] What could I be doing wrong here

2001-03-26 Thread Pierre-Yves Lemaire
> > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] The ubitquitous forum project

2001-03-26 Thread Pierre-Yves Lemaire
tional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] + == + Pierre-Yves Lem@ire + E-MedHosting.com + (514) 729-8100 + [EMAIL PROTECTED] + == -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] Tough One

2001-03-29 Thread Pierre-Yves Lemaire
General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] + == + Pierre-Yves Lem@ire + E-MedHosting.com + (514) 729-8100 + [

Re: [PHP] php error code.

2001-03-29 Thread Pierre-Yves Lemaire
taking place? > >Ade > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] + =

Re: [PHP] Programming Jobs - what I look for.

2001-04-02 Thread Pierre-Yves Lemaire
* Willingness to work weekends/evenings, if need be, to meet deadlines. And if you are still working weekends and evenings after 9 months on the job, quit immediately. Start your own company or go fishing :) py -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMA

RE: [PHP] New buzz SOAP?

2001-04-03 Thread Pierre-Yves Lemaire
gt;To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] > > > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For addit

Re: [PHP] PHP and MD5 passwords?

2001-04-04 Thread Pierre-Yves Lemaire
t the list administrators, e-mail: [EMAIL PROTECTED] + == + Pierre-Yves Lem@ire + E-MedHosting.com + (514) 729-8100 + [EMAIL PROTECTED] + == -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PR

[PHP] Problem with newline and email

2001-04-06 Thread Pierre-Yves Lemaire
order to send a long message, wich is coming multiple db fields to a text file to php mail(), so it will be formatted nicely on all email client? Or, is it possible? Any piece of code, tutorial, newsletter script, good wiches or old grandma's soup would be so appreciated! py + ===

Re: [PHP] Close Window script

2001-04-06 Thread Pierre-Yves Lemaire
t >InterClean Equipment, Inc. >734-975-2967 >www.InterClean.com > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTE

RE: [PHP] Commercial sites that use PHP

2001-04-10 Thread Pierre-Yves Lemaire
t;-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] > >-- >PHP General Mailing List (http://www.php.net/) >To unsubs

Re: [PHP] assignment operator works for comparison??

2001-04-10 Thread Pierre-Yves Lemaire
t"); } > echo( $shiny ); //this will return 0 > >?> > >--Dan > > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators,

Re: [PHP] Forcing a dynamic created text file to be saved

2001-04-10 Thread Pierre-Yves Lemaire
$i."\r\n"); > > } > > > > ?> > > >try: > >header("Content-Type: unknown/unknown"); > >browswer won't know what type of file it is, so will prompt to save.. should >get the file-name right from the other. > >bkx >

Re: [PHP] Are calling COM applications a trojan?

2001-04-11 Thread Pierre-Yves Lemaire
it. > > >- Original Message - >From: Pierre-Yves Lemaire <[EMAIL PROTECTED]> >To: <[EMAIL PROTECTED]> >Sent: Wednesday, 11 April, 2001 3:54 PM >Subject: Re: [PHP] Are calling COM applications a trojan? > > > > > > It can't. > >

Re: [PHP] I know POST Uploads, what about "downloads?"

2001-04-13 Thread Pierre-Yves Lemaire
viously doesn't >work for PHP or ASP(ugh) because the browser parses them THEN sends it to >the client. Is there anyway to allow the client to download the actual >unparsed file? Any help would be appreciated ^_^ + == + Pierre-Yves Lem@ire + E-MedHosting.com + (

[PHP] parent::mymethod() call $this->mymethod() bug?

2001-09-21 Thread Jean-Pierre Arneodo
Hi! something looks strange for me. Why the method Fils::x is called? MyConfig: RH7.1 PHP4.0.6 I found something similar in the bug database. http://bugs.php.net/index.php?id=12313 Open 4.0.6 Linux parent resolving and deep require's ## RESULT Fils::Fils called Pere::Pere called Fils::x calle

[PHP] Installation problems on Vista

2009-01-19 Thread lucson pierre-charles
I am having problems installing the zip package (PHP5) on Windows Vista. The output will not come on the browser upon testing. Only the code is being output to the browser. Apache (Apache 2) was properly installed. Your assistance please. Regards, Lucson

[PHP] RE: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
IniDir "c:/php5" I added these lines to the DirectoryIndex: DirectoryIndex index.html index.html.var index.php Lucson> Date: Mon, 19 Jan 2009 22:49:01 +> From: nrix...@gmail.com> To: lucsonpie...@hotmail.com> CC: php-general@lists.php.net> Subject: Re: Installation pr

RE: [PHP] Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
to process PHP script files. Check > out this page:> > http://www.ampsoft.net/webdesign-l/how-to-install-apache-php-mysql-3.html> > -TG> > - Original Message -> From: lucson pierre-charles > To: > Date: Mon, 19 Jan 2009 22:37:25 +> Subject: [PHP]

RE: [PHP] Re: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
Installation problems on Vista> > lucson pierre-charles wrote:> > Dear Nathan,> > The "short_tags" is sure off but when I changed the > > scripts, they're still being output to the browser. > > > > These are the lines I added to the modules section:

RE: [PHP] Re: Installation problems on Vista

2009-01-20 Thread lucson pierre-charles
Yes. It can't find a file.> To: php-general@lists.php.net> Date: Tue, 20 Jan 2009 17:14:14 -0600> From: nos...@mckenzies.net> Subject: Re: [PHP] Re: Installation problems on Vista> > lucson pierre-charles wrote:> > Nathan,> > > > When I remove the #&

[PHP] Why [?php while (true) { sleep(5); } ?] dies on CLI?

2009-06-11 Thread Jean-Pierre Arneodo
Hi! I'm stuck. I don't understand why the php CLI dies after 3 hours in my script. Any idea to solve? Thanks PHP 5.2.9-0.dotdeb.2 with Suhosin-Patch 0.9.7 (cli) (built: Apr 7 2009 20:06:36) Linux ubuntu 2.6.24-19-server #1 SMP Wed Jun 18 14:44:47 UTC 2008 x86_64 GNU/Linux Conf [php.ini] max_

[PHP] Re: [Bulk] Re: [PHP] Why [?php while (true) { sleep(5); } ?] dies on CLI?

2009-06-11 Thread Jean-Pierre Arneodo
Ashley Sheridan a écrit : On Thu, 2009-06-11 at 10:47 +, Jean-Pierre Arneodo wrote: Hi! I'm stuck. I don't understand why the php CLI dies after 3 hours in my script. Any idea to solve? Thanks PHP 5.2.9-0.dotdeb.2 with Suhosin-Patch 0.9.7 (cli) (built: Apr 7 2009 20:06

[PHP] Re: [Bulk] Re: [PHP] Re: [Bulk] Re: [PHP] Why [?php while (true) { sleep(5); } ?] dies on CLI?

2009-06-13 Thread Jean-Pierre Arneodo
Ashley Sheridan a écrit : On Thu, 2009-06-11 at 20:52 +0200, Jean-Pierre Arneodo wrote: Ashley Sheridan a écrit : On Thu, 2009-06-11 at 10:47 +, Jean-Pierre Arneodo wrote: Hi! I'm stuck. I don't understand why the php CLI dies after 3 hours in my script. A

[PHP] Activating the mysql_clear_password plugin

2012-09-27 Thread Pierre-Gildas MILLON
the mysql client ? Regards, Pierre-Gildas MILLON pg.mil...@gmail.com

[PHP] Unset and __destruct

2012-12-06 Thread Pierre du Plessis
Hi all I searched the internet (probably not hard enough), and couldn't find a decent answer. I was wondering why, when calling unset on an object, it doesn't automatically call the __destruct method (if it exists) on the object. When unsetting an object, php doesn't automatically remove referen

[PHP] Re: [PHP-DEV] PHP 5.0.4RC1 and PHP 4.3.11RC1 rolled

2005-03-14 Thread Pierre-Alain Joye
ly out of date for both PHP 5.0.4 > and 4.3.11, where is the windows build pulling these versions > from? Feel like it was not updated on the building host. PEAR should be 1.3.5, I do not remember the other, but the script should be updated. Regards, --Pierre -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: [PEAR] Re: Cacheing data form PHP script

2004-01-28 Thread Pierre-Alain Joye
ed to poke around all sessions. That is how cache* work. pierre ps: Rush can you use quotes in reply? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    1   2   3