[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 proces

Re: [PHP] mcrypt win32 install problem ?

2004-01-21 Thread speedfreak
on terminates encryption Description bool mcrypt_generic_end ( resource td) Warning This function is deprecated, use mcrypt_generic_deinit() instead. It can cause crashes when used with mcrypt_module_close() due to multiple buffer frees. So maybe something else is causing V

Re: [PHP] internally stored binary image

2003-03-20 Thread speedfreak
e, or copy/paste its contents into > your own code. > // The next lines are just to test the stuff - adjust the Content-Type > header to your needs: > > header('Content-Type: image/gif'); > eval($asc); // this will render the binary content into $img_data > echo $i

[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 Mai

[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 p

[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 ยค). D

[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? BTW: I also messed with fopen("ftp://user:pass@...";) but fail

[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? BTW: I also messed with fopen("ftp://user:pass@...";) but fail