php-general Digest 24 Jul 2010 06:37:49 -0000 Issue 6862

2010-07-24 Thread php-general-digest-help
php-general Digest 24 Jul 2010 06:37:49 - Issue 6862 Topics (messages 307120 through 307126): Re: Video lessons 307120 by: Dan Joseph 307121 by: David Hutto 307122 by: David Hutto Re: php array in different OS 307123 by: Yang Fei Re: opening link in new

php-general Digest 24 Jul 2010 22:11:23 -0000 Issue 6863

2010-07-24 Thread php-general-digest-help
php-general Digest 24 Jul 2010 22:11:23 - Issue 6863 Topics (messages 307127 through 307135): Re: opening link in new window 307127 by: Robert Cummings 307128 by: Adam Richardson 307130 by: tedd 307131 by: Robert Cummings 307132 by: Andre Polykanine

Re: [PHP] opening link in new window

2010-07-24 Thread Paul M Foster
On Sat, Jul 24, 2010 at 01:08:49AM -0400, Robert Cummings wrote: On 10-07-24 12:58 AM, Paul M Foster wrote: On Fri, Jul 23, 2010 at 01:28:23AM -0400, David Mehler wrote: Hello, I've got a page with an external link. I'd like to open it in a new window, but i'm using the xhtml 1.0 strict dtd

Re: [PHP] opening link in new window

2010-07-24 Thread Robert Cummings
On 10-07-24 02:06 AM, Paul M Foster wrote: On Sat, Jul 24, 2010 at 01:08:49AM -0400, Robert Cummings wrote: On 10-07-24 12:58 AM, Paul M Foster wrote: On Fri, Jul 23, 2010 at 01:28:23AM -0400, David Mehler wrote: Hello, I've got a page with an external link. I'd like to open it in a new

Re: [PHP] opening link in new window

2010-07-24 Thread Adam Richardson
On Sat, Jul 24, 2010 at 2:44 AM, Robert Cummings rob...@interjinn.comwrote: On 10-07-24 02:06 AM, Paul M Foster wrote: On Sat, Jul 24, 2010 at 01:08:49AM -0400, Robert Cummings wrote: On 10-07-24 12:58 AM, Paul M Foster wrote: On Fri, Jul 23, 2010 at 01:28:23AM -0400, David Mehler wrote:

[PHP] Re: Does class length slow down performance

2010-07-24 Thread Nathan Rixham
Sebastian Ewert wrote: Hi, I'm developing an joomla component and my helper an user classes are crowing bigger and bigger. The helper class is for static use only. Does class size decrease performance of my php scripts, even for static usage? Is there a general rule when to split a class to

Re: [PHP] opening link in new window

2010-07-24 Thread tedd
At 2:06 AM -0400 7/24/10, Paul M Foster wrote: Or, wait. With javascript, you're hacking the DOM. If you put my PHP above in the file, the offending code will arrive at the client browser. Will the xhtml 1.0 deities cast you into the pit of hell if this happens? Paul A minor clarification,

Re: [PHP] opening link in new window

2010-07-24 Thread Robert Cummings
On 10-07-24 04:19 AM, Adam Richardson wrote: Code that resembled the below is how I used to open new windows before I started using jQuery Note, this completely avoids use of the target attribute. function wireNewWindows(){ if(document.getElementsByTagName){ var anchors =

Re[2]: [PHP] opening link in new window

2010-07-24 Thread Andre Polykanine
Hi Rob and all, Btw, is there a way to do window.close without any questions of a browser? I know the only one: the window is generated via window.open. -- With best regards from Ukraine, Andre Skype: Francophile; WlmMSN: arthaelon @ yandex.ru; Jabber: arthaelon @ jabber.org Yahoo!

Re: Re[2]: [PHP] opening link in new window

2010-07-24 Thread Ashley Sheridan
On Sat, 2010-07-24 at 17:31 +0300, Andre Polykanine wrote: Hi Rob and all, Btw, is there a way to do window.close without any questions of a browser? I know the only one: the window is generated via window.open. -- With best regards from Ukraine, Andre Skype: Francophile;

[PHP] Error on Signing Encrypting PayPal Website Payment Button with openssl_

2010-07-24 Thread Keith
Hi, anyone has experience creating PayPal Encrypted Website Payment button? I follow PayPal SDK example but the encrypted value is not correct. I think the error should be with openssl_pkcs7_sign() since PayPal can decrypt it with PayPal private key but does not recognize my signed data.

Re: [PHP] SOAP ERROR - Encoding

2010-07-24 Thread Richard Quadling
On 22 July 2010 21:59, Augusto Flavio afla...@gmail.com wrote: Hi guys, I created a simple wsdl web service. Everything works fine, but when I fill the fields with accents and send the soap request, the PHP returns me an error: *Fatal error*: Uncaught SoapFault exception: [Client]

Re: [PHP] opening link in new window

2010-07-24 Thread Adam Richardson
On Sat, Jul 24, 2010 at 10:20 AM, Robert Cummings rob...@interjinn.comwrote: On 10-07-24 04:19 AM, Adam Richardson wrote: Code that resembled the below is how I used to open new windows before I started using jQuery Note, this completely avoids use of the target attribute. function