Re: [PHP] Re: unexpected T_SL

2002-09-02 Thread Steel
syntax. EOD; ? E To be honest, there is nothing wrong. It works in version 4.2.2 (at least, E here it does) ;-)) E Grtz Erwin Why not to try ?php $str = EOT ??? It seems to me, that EOD - End Of Data, and EOT - End Of Text Silly, but why not to try? :) -- The Same, Steel

Re: [PHP] Re: How to escape in hidden field?

2002-09-02 Thread Steel
can use some Regexp features. EX: $string = preg_replace(/\$quot/,\,Hello quot;worldquot;); -- The Same, Steelmailto:[EMAIL PROTECTED] http://www.none.ru -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] Mail

2002-10-09 Thread Steel
Hi group, I have a problem. There is no sendmail on the hoster's computer. (OS Unix-like) Can I send mail in any other way? Please help! -- The Same, Steel mailto:[EMAIL PROTECTED] http://www.none.ru -- PHP General Mailing List

Re: [PHP] Regular Expression (for ereg(i))

2002-10-14 Thread Steel
it will be: eregi (^[^]+$,AB) will return false. -- The Same, Steelmailto:[EMAIL PROTECTED] http://www.none.ru -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MsWord html

2002-11-10 Thread Steel
Hi php-windows, Does anybody knows, what regexp can help me remove almost all M$ Word2000 HTML tags and styles? Let the Force Be with Yo! ;) -- The Same, Steel mailto:asergey;inbox.ru http://www.none.ru -- PHP General Mailing

Re: [PHP] Display character 'x' times

2002-11-19 Thread Steel
in Perl. Answer from PHP Manual. Comment by: [EMAIL PROTECTED] (25-Oct-2001 11:16) -- The Same, Steelmailto:[EMAIL PROTECTED] http://www.none.ru -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Tracking file download progress

2009-12-24 Thread STEEL
2009/12/24 STEEL vla...@mail.kna.ru: Hi all! Here  is  the  problem: i have PHP script that takes URL of file from client  and  downloads  it  to  my server. But when file is downloading, clients  see blank page. How can I track file download progress on the server  side(easier) and send

Re: [PHP] Tracking file download progress

2009-12-24 Thread STEEL
On Thu, Dec 24, 2009 at 09:55, STEEL vla...@mail.kna.ru wrote: Thanks for response, but seems you haven't understood: takes URL of file from client  and  downloads  it  to  my server. User  don't download it at the downloading time to server, server gets it thru PHP script and stores

Re: [PHP] Tracking file download progress

2009-12-26 Thread STEEL
complete size of the file, and $GLOBALS['_GOT'] tells clientside how bytes are downloaded..all you need from php is to disable output buffering,or it will not work! And then, showing progress bar is just easy HTML JS trick! -- STEEL mailto:vla...@mail.kna.ru