php-windows Digest 19 Feb 2004 07:58:34 -0000 Issue 2129

2004-02-18 Thread php-windows-digest-help
php-windows Digest 19 Feb 2004 07:58:34 - Issue 2129 Topics (messages 22901 through 22908): Re: Working with Base64 data 22901 by: hubo 22904 by: Justin Patrin Re: Emailing via mail(), secondary servers 22902 by: Justin Patrin 22903 by: Manuel Lemos 2

AW: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Sven Schnitzke
To both of you crusaders, first of all you are by far off topic now, so please relocate to a suitable list. And as I don't see this quarrel get to any kind of "solution" I would like to add my very personal unwanted comment: Besides and above any substantial point in any of your proceedings it

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Manuel Lemos
Hello, On 02/18/2004 02:09 AM, Justin Patrin wrote: However, I am more interested in legitimate users that download and try the code. This helps me test my code more intensively and iron any bugs or limitations much faster. I do not even wish or expect people to thank me. As long as they test t

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Ignatius Reilly
Although this conversation has by now undoubtedly accrued to human knowledge, there may be other more suitable forums where to pursue it. Ignatius _ - Original Message - From: "Justin Patrin" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 18,

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Justin Patrin
Manuel Lemos wrote: Hello, On 02/18/2004 06:40 PM, Justin Patrin wrote: The main point of requiring a valid address has nothing to do with sending you spam, but rather to make it difficult for some authors to boost their top download ranking positions by creating many accounts and download their

[PHP-WIN] Re: Working with Base64 data

2004-02-18 Thread Justin Patrin
Hubo wrote: When I attempt to view the generated test.jpg in a browser, it is unable to display. Same with photoshop and the windows built-in pic viewer. I know that the base64 data is not corrupted, since I can get it to display properly in netscape with the following code: echo ''; Unfortuna

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Manuel Lemos
Hello, On 02/18/2004 06:40 PM, Justin Patrin wrote: The main point of requiring a valid address has nothing to do with sending you spam, but rather to make it difficult for some authors to boost their top download ranking positions by creating many accounts and download their own packages. That is

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Justin Patrin
Manuel Lemos wrote: Hello, On 02/18/2004 02:15 PM, B.A.T. Svensson wrote: The main point of requiring a valid address has nothing to do with sending you spam, but rather to make it difficult for some authors to boost their top download ranking positions by creating many accounts and download the

[PHP-WIN] Re: Working with Base64 data

2004-02-18 Thread hubo
> > When I attempt to view the generated test.jpg in a browser, it is unable to > display. Same with photoshop and the windows built-in pic viewer. > I know that the base64 data is not corrupted, since I can get it to display > properly in netscape with the following code: > > echo ''; > > > Unfor

php-windows Digest 18 Feb 2004 19:30:54 -0000 Issue 2128

2004-02-18 Thread php-windows-digest-help
php-windows Digest 18 Feb 2004 19:30:54 - Issue 2128 Topics (messages 22886 through 22900): Re: [PHP] Replace of ' in a query 22886 by: Svensson, B.A.T. (HKG) OPTIMIZING PHP 22887 by: zanzamarr 22888 by: David Felton 22891 by: DvDmanDT 22894 by: David

Re: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Manuel Lemos
Hello, On 02/18/2004 02:15 PM, B.A.T. Svensson wrote: The main point of requiring a valid address has nothing to do with sending you spam, but rather to make it difficult for some authors to boost their top download ranking positions by creating many accounts and download their own packages. That

[PHP-WIN] Re: Working with Base64 data

2004-02-18 Thread Steve Goodman
Thanks a bunch! That's what the image should be. I'm running 4.3.2. I'll see about an upgrade. steve "Dvdmandt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Did you try with PHP 4.3.4 (I think some earlier version was buggy)? It > worked, and created something like a black/white

[PHP-WIN] Installing the php_mhash.dll extension

2004-02-18 Thread Kevin McNally
I need to install the php_mhash.dll extension to use with Authroize.net on my windows 2000 server. I edited the php.ini file by adding the correct directory and removing the ; before php_mhash.dll. I then copied the libmhash.dll file that is needed to the C:\Winnt\system32\ folder. I ran the test

[PHP-WIN] Re: Working with Base64 data

2004-02-18 Thread DvDmanDT
Did you try with PHP 4.3.4 (I think some earlier version was buggy)? It worked, and created something like a black/white palette or something, and the number '2' at the bottom, 24x466 px.. :) Just used this: echo base64_decode($image_data); -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt

Re: [PHP-WIN] printing a php page

2004-02-18 Thread Torsten Schabdach
Hello! Of course you only should use Javascript, if you can rely on it, meaning that you know that every user has JS enabled. Else it would be some kind of unfair. I mean the most easiest solution would be, to print just a hint beneath the form that he (the user) can print out this page and of

RE: [PHP-WIN] Re: Emailing via mail(), secondary servers

2004-02-18 Thread Svensson, B.A.T. (HKG)
> The main point of requiring a valid address has nothing to > do with sending you spam, but rather to make it difficult > for some authors to boost their top download ranking > positions by creating many accounts and download their own > packages. That is explained in the why page. And that's of

RE: [PHP-WIN] OPTIMIZING PHP

2004-02-18 Thread David Felton
Yep that's right. -Original Message- From: DvDmanDT [mailto:[EMAIL PROTECTED] Sent: 18 February 2004 4:43 To: [EMAIL PROTECTED] Subject: Re: [PHP-WIN] OPTIMIZING PHP I do beleive you mean short_open_tag.. :) I doubt you ment short_quotes anyway.. :) -- // DvDmanDT MSN: dvdmandt¤hotmail

[PHP-WIN] Working with Base64 data

2004-02-18 Thread Steve Goodman
Hi everyone, I'm running into an issue decoding base64 data. I have an XML file that contains a base64 encoded image, which I am attempting to extract, and display. Sounds simple enough, yet I am running into an issue saving the image as a jpeg. It seems that when I decode the data, the resulting b

Re: [PHP-WIN] printing a php page

2004-02-18 Thread Ignatius Reilly
The button can call a javascript function that: - opens a pop-up window - fetches content based on the parent window's form elements, - echoes javascript-generated dynamic content accordingly (HTML or otherwise) Ignatius _ - Original Message - From: "Ciro Marciano"

Re: [PHP-WIN] OPTIMIZING PHP

2004-02-18 Thread DvDmanDT
I do beleive you mean short_open_tag.. :) I doubt you ment short_quotes anyway.. :) -- // DvDmanDT MSN: dvdmandt¤hotmail.com Mail: dvdmandt¤telia.com "David Felton" <[EMAIL PROTECTED]> skrev i meddelandet news:[EMAIL PROTECTED] > The first option is faster, although this might be a slight improv

Re: [PHP-WIN] printing a php page

2004-02-18 Thread Ignatius Reilly
I suppose you mean the client's printer? onclick="javascript:window.print()" reminder: PHP is mostly used server-side HTH Ignatius _ - Original Message - From: "Ciro" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 18, 2004 17:20 Subject: [PH

[PHP-WIN] printing a php page

2004-02-18 Thread Ciro
hi guys!! how can i send to the printer a php page from a button on it? thanks ciro from italy -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] OPTIMIZING PHP

2004-02-18 Thread David Felton
The first option is faster, although this might be a slight improvement to make it more readable: Localizzazione : Coordinate Geografiche : Continente : Confini : - you'll need to have short_quotes enabled to be able to do this. -Original Message- From: zanzamarr [mailto:[EMAIL

[PHP-WIN] OPTIMIZING PHP

2004-02-18 Thread zanzamarr
Hello everyone what's better for my machine Is it better to do so: Localizzazione : Coordinate Geografiche : Continente : Confini : -