RE: [PHP] Upload Progress Meter - what's the latest?

2006-04-25 Thread Jay Blanchard
[snip] ...a pretty good discussion... [/snip] I have used output buffering to flush stuff (like lengthy data) to the client before the end of the script so that those pesky users could see something was happening (because they couldn't be bothered to watch the browser's progress meter) and at one

Re: [PHP] Amazon WSDL

2006-04-25 Thread John Meyer
Richard Collyer wrote: John Meyer wrote: Hey, is it possible to use the Amazon WSDL within PHP? Lookie what the first google entry for Amazon WSDL php was: http://www.onlamp.com/pub/a/php/2003/07/03/php_amazon_soap.html Richard Nice, now I need to navigate the bloody Amazon web

Re: [PHP] Upload Progress Meter - what's the latest?

2006-04-25 Thread D. Dante Lorenso
Richard Lynch wrote: On Tue, April 25, 2006 5:28 pm, D. Dante Lorenso wrote: Everything PHP returns from a server is client side, so your Oh yeah. I forgot to say... The above presumption is patently false. Let me clarify: Assuming client/server architecture, if PHP is on the

[PHP] PHP/LDAP Setup Problem

2006-04-25 Thread Crone, James
I need to add LDAP support to my install of PHP. I had my sysadmin download OpenLDAP and install the libraries. Our current build of PHP is complex and I'd prefer not to have to rebuild just to add LDAP. I've been told to use the dl() function to load the LDAP library when needed in PHP.

Re: [PHP] Upload Progress Meter - what's the latest?

2006-04-25 Thread D. Dante Lorenso
Richard Lynch wrote: Anything you see with PHP upload progress meter together has to be some kind of hack whose under-pinning is NOT PHP at all, but is JavaScript or similar client-side technology. Not true. The graphical display is HTML, DHTML, JavaScript, etc...but the means of monitoring

Re: [PHP] Re: phpmailer problem with spam score

2006-04-25 Thread Jochem Maas
Richard Lynch wrote: On Tue, April 25, 2006 7:19 am, Merlin wrote: Paul Scott schrieb: On Tue, 2006-04-25 at 11:47 +0200, Barry wrote: Does anybody know how phpmailer sents its messages out by default? I believe it does this via the php function mail. But there can also be a smtp server

Re: [PHP] phpmailer problem with spam score

2006-04-25 Thread Sameer N Ingole
Stut wrote: Merlin wrote: X-Spam: high X-Spam-score: 4.2 X-Spam-hits: BAYES_50, EXTRA_MPART_TYPE, FORGED_RCVD_HELO, HTML_MESSAGE, HTML_TAG_BALANCE_BODY, MIME_HTML_MOSTLY, SARE_OBFU_PART_ING Is there something I can do about this? [snip] As of Spamassassin version 3.1.X it is BAYES_50:

[PHP] Removing special chars

2006-04-25 Thread Gerry Danen
I would like to replace all chars in a string that are not a-z or 0-9 with a space. I can use a series of str_replace functions, but there has to be a faster way. I know there is a solution but my chemo-brain is slowing me down today. Sorry... Any suggestions? TIA Gerry -- PHP General Mailing

[PHP] Removing special chars

2006-04-25 Thread Gerry D
I would like to replace all chars in a string that are not a-z or 0-9 with a space. I can use a series of str_replace functions, but there has to be a faster way. I know there is a solution but my chemo-brain is slowing me down today. Sorry... Any suggestions? TIA Gerry -- PHP General Mailing

Re: [PHP] Removing special chars

2006-04-25 Thread Ligaya Turmelle
Gerry Danen wrote: I would like to replace all chars in a string that are not a-z or 0-9 with a space. I can use a series of str_replace functions, but there has to be a faster way. I know there is a solution but my chemo-brain is slowing me down today. Sorry... Any suggestions? TIA Gerry

[PHP] Protecting index.php

2006-04-25 Thread P. Guethlein
Initial index.php file: ?php if(isset($_GET['d'])){setcookie('disp',$_GET['d'],time()+(60*60*24*60));$_COOKIE['disp']=$_GET['d'];} include_once('writemenus.php'); if(!isset($_GET['href'])) $include = 'startpage.htm'; else { $include = $_GET['href']; $include = $include.php;

[PHP] Php function to Set focus On A form Field

2006-04-25 Thread marvin hunkin
Hi. is there any php or java script function, where i can embed into my php or html file, to set focus on to the first form field, like a text box, to go to that field first, and not to go to the link or button first. if there are any tips, tricks, or links or code examples, how to fix this

<    1   2