RE: [PHP] PHP on client-side

2001-08-16 Thread Bruin, Bolke de
Euhum what about PHPGTK? Bolke -Oorspronkelijk bericht- Van: Tom Malone [mailto:[EMAIL PROTECTED]] Verzonden: Thursday, August 16, 2001 2:13 PM Aan: PHP Users Onderwerp: [PHP] PHP on client-side Wouldn't it be nice if there was a way develop client-side (browser-based) applications for

RE: [PHP] Re: PHP.exe EAT's my win resources... (!)

2001-08-10 Thread Bruin, Bolke de
Depends for what you are using it. I'm having a PHP module as an ISAPI module in production use here for use as a Quicken OFX server. I haven't had much trouble with it and its running stable for 6 months now. Bolke -Oorspronkelijk bericht- Van: elias [mailto:[EMAIL PROTECTED]] Verzonde

RE: [PHP] PHP.exe EAT's my win resources... (!)

2001-08-10 Thread Bruin, Bolke de
That is correct, if you dont want it run it as an ISAPI module. Bolke -Oorspronkelijk bericht- Van: Tribun [mailto:[EMAIL PROTECTED]] Verzonden: Friday, August 10, 2001 10:24 AM Aan: [EMAIL PROTECTED] Onderwerp: [PHP] PHP.exe EAT's my win resources... (!) Tach! Is that correct, that m

RE: [PHP] require using url

2001-08-08 Thread Bruin, Bolke de
Is that file living on a HTTP server which PARSES the function? Eg do you get the source code when directly requesting it from a browser or an empty page (or whatever) Bolke -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Verzonden: Wednesday, August 08, 2001 6

RE: [PHP] Image Generation Library

2001-08-08 Thread Bruin, Bolke de
Hi, read the manual on the GD-library (www.php.net/image) it wont do any GIFS anymore, but it'll all the rest Bolke -Oorspronkelijk bericht- Van: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] Verzonden: Wednesday, August 08, 2001 6:14 PM Aan: [EMAIL PROTECTED] Onderwerp: [PHP] Image Gene

RE: [PHP] How to post unknown amount of data ?

2001-08-08 Thread Bruin, Bolke de
forgot something to enumerate them in your script use something like for ($i=0;$imailto:[EMAIL PROTECTED]] Verzonden: Wednesday, August 08, 2001 1:20 PM Aan: 'vz'; [EMAIL PROTECTED] Onderwerp: RE: [PHP] How to post unknown amount of data ? You can enumerate the form vars for example if you

RE: [PHP] How to post unknown amount of data ?

2001-08-08 Thread Bruin, Bolke de
You can enumerate the form vars for example if you have an unkown amount of comments for($i=0;$i"; } etc Bolke (sorry I'm not going to look at your code, better split HTML creation and data(-retrieval)) Bolke -Oorspronkelijk bericht- Van: vz [mailto:[EMAIL PROTECTED]] Verzonden: We

RE: [PHP] OT!!: Attitude of B van Ouwerkerk

2001-08-01 Thread Bruin, Bolke de
People, with all respect I think this thread has become way offtopic to be on this list. Do you mind not cc'ing the list while replying to each other? -Oorspronkelijk bericht- Van: Alexander Wagner [mailto:[EMAIL PROTECTED]] Verzonden: Wednesday, August 01, 2001 4:39 PM Aan: scott [gts

RE: [PHP] calling javascript functions inside PHP

2001-07-30 Thread Bruin, Bolke de
Short: You cannot why: PHP is serverside JavaScript is clientside solution: encode the cc number in PHP or use SSL for encryption. Or let the javascript version encode it anyway although it's not "send" and let the PHP checkf or the value of send and cc number (that is kind of what you are

RE: [PHP] Reading the content.

2001-07-11 Thread Bruin, Bolke de
To my knowledge you *only* get $HTTP_POST_RAW_DATA when the content-type is unknown. Not if there are nor vars in the POST (which is possible as empty vars are not being send) Bolke -Oorspronkelijk bericht- Van: Gustavo Carreno [mailto:[EMAIL PROTECTED]] Verzonden: Wednesday, July 11, 20

RE: Re[2]: [PHP] variables in a e-mail

2001-06-19 Thread Bruin, Bolke de
Use templates instead of sending it to the webbrowser send it as an email... http://www.phpbuilder.com for more info -Oorspronkelijk bericht- Van: Richard Kurth [mailto:[EMAIL PROTECTED]] Verzonden: Tuesday, June 19, 2001 4:51 AM Aan: [EMAIL PROTECTED]; Alexander Wagner Onderwerp: Re[

RE: [PHP] Extracting the body of the http request entity? found it!

2001-04-27 Thread Bruin, Bolke de
I would like to add a note to this, that this works in general, but the thing which actually triggers the setting of $HTTP_POST_RAW_DATA is a not recognized mime-type. Bolke -Oorspronkelijk bericht- Van: nik [mailto:[EMAIL PROTECTED]] Verzonden: Friday, April 27, 2001 3:04 PM Aan: [EMAI

RE: [PHP] parsing html / xml (more)

2001-03-08 Thread Bruin, Bolke de
Hi, I wrote php-lib-htmlparse doesn't do they arguments stuff, but should be easily added (code is there already although not functioning) go to www.phpbuilder.com for the code snippets Bolke -Oorspronkelijk bericht- Van: Nathaniel Hekman [mailto:[EMAIL PROTECTED]] Verzonden: Wednesday

RE: [PHP] no-resubmit on reload/refresh

2001-03-06 Thread Bruin, Bolke de
lto:[EMAIL PROTECTED]] Verzonden: Tuesday, March 06, 2001 2:01 PM Aan: Bruin, Bolke de; [EMAIL PROTECTED] Onderwerp: RE: [PHP] no-resubmit on reload/refresh Javascript? (I know it's generally horrible, but it's good for this sort of thing) Stick this in your ...: <!--Be

[PHP] no-resubmit on reload/refresh

2001-03-06 Thread Bruin, Bolke de
I have a form which is submitted by a POST action. After submitting, the same page (updated though) returns with the form. (It's a messageboard) Now when someone refreshes/reloads the page they get the question if they want to resubmit the form. I don't want that. You get double posts this way.