[PHP] Re: Alternatives to Flush()

2004-03-24 Thread speedfreak
Ron Stagg wrote on 24/03/04 22:02: I have a particular PHP web page that can take over an hour to process. When visitors come to this page, I want the code to redirect them to a separate page at my site. After the redirection, I want the PHP script to continue operating on its own until the

Re: [PHP] mcrypt win32 install problem ?

2004-01-21 Thread speedfreak
() due to multiple buffer frees. So maybe something else is causing Vincent's problem to decrypt. Without further code snippets it is very hard to pin it down... Regards, speedfreak -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] internally stored binary image

2003-03-20 Thread speedfreak
In order to distribute a single script I would like to store a small image internally. Is this at all possible with PHP? How would I go about it? Please feel free to rtfm me to the relevant sections. Thx in advance, [EMAIL PROTECTED] PS: CC me please, as I'm on the digest... -- PHP General

Re: [PHP] internally stored binary image

2003-03-20 Thread speedfreak
indeed! After adjusting for win32 (added 'b' to fopen's) this script is a little gem. You really saved me quite some headaches. Thanks! -speedfreak -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] contact list re-ordering (php/mySQL CMS design)

2002-09-07 Thread speedfreak
Dear guru's, Hit a problem while developing a CMS with php/mySQL. Part of this is a contact list and this works ok (add/edit/delete with insert/update/delete queries). Now the client has requested a new feature: ability to change the order in which the contacts are being presented in the public

[PHP] Euro symbol [textarea/e-mail]

2002-05-14 Thread speedfreak
Hi PHP guru's, I've got a working script that picks up a msg from a textarea and (after validation etc.) mails out a plain text confirmation e-mail (using fsockopen). So far, so good. Only problem is when the textarea contains the Euro symbol, it is replaced in the plain mail (replaced by ยค).

[PHP] store file using socket/fopen

2001-10-26 Thread speedfreak
Hello list, Simple Enough Objective: store file remotely (wu-ftp); MinorSnag: PHP's ftp-functions unavailable at localhost; BelowWorkaround: works fine for deleting remote file; MajorSnag: how to STORE a file remotely using socket? ?php $ftp=fsockopen(ftp.server.com, 21, $errno, $errstr, 60);

[PHP] upload file using socket/fopen

2001-10-25 Thread speedfreak
Hello list, Simple Enough Objective: store file remotely (wu-ftp); MinorSnag: PHP's ftp-functions unavailable at localhost; BelowWorkaround: works fine for deleting remote file; MajorSnag: how to STORE a file remotely using socket? ?php $ftp=fsockopen(ftp.server.com, 21, $errno, $errstr, 60);