[PHP-WIN] Hidden FORM tag in PHP

2004-09-29 Thread susilo
How to input hidden type FORM tag in PHP, and the SELECT TAG form variabel option Regards, susilo

RE: [PHP-WIN] Hidden FORM tag in PHP

2004-09-29 Thread George Pitcher
susilo wrote: How to input hidden type FORM tag in PHP, and the SELECT TAG form variabel option Not quite sure what yo mean here but if you want to have a form input type to be hidden thats HTML amd nothing to do with PHP. George -- PHP Windows Mailing List (http://www.php.net/) To

Re: [PHP-WIN] OpenSSL in Win32

2004-09-29 Thread Thomas Hove
Hello Edin! When using your php4ts.dll for PHP 4.3.9 I still get the dreaded warning [Wed Sep 29 10:15:07 2004] [warn] Loaded DSO php/sapi/php4apache.dll uses plain Apache 1.3 API, this module might crash under EAPI! (please recompile it with -DEAPI) Do you know how to get rid of it??? best

Re: [PHP-WIN] OpenSSL in Win32

2004-09-29 Thread Thomas Hove
Hello Edin! When using your php4ts.dll for PHP 4.3.9 I still get the dreaded warning [Wed Sep 29 10:15:07 2004] [warn] Loaded DSO php/sapi/php4apache.dll uses plain Apache 1.3 API, this module might crash under EAPI! (please recompile it with -DEAPI) Do you know how to get rid of it??? best

[PHP-WIN] ereg_replace help wanted

2004-09-29 Thread George Pitcher
Hi, I don't want to spend a lot of time leaning how to use this function but I have a problem that I think it can solve. I have a web form that allows the user to (amongst other things) submit a pagerange to my database. Using '-' and ',' as separators, I am able to calculate the number of pages

Re: [PHP-WIN] ereg_replace help wanted

2004-09-29 Thread trlists
On 29 Sep 2004 George Pitcher wrote: The problem is that I think that some of my users are pasting the range in, rather than re-typing (I don't really want to stop them from pasting) and I am sure that sometimes the '-' is coming over as something other than a conventional hyphen. Can

RE: [PHP-WIN] ereg_replace help wanted

2004-09-29 Thread Asendorf, John
Actually, what you need is split() by the sounds of it. Spliting the groups of pages by ',' would give you an array of either single pages or ranges of pages. From there, it is just a matter of mathematics to take the pieces of the new array and adding them together. -Original

RE: [PHP-WIN] ereg_replace help wanted

2004-09-29 Thread George Pitcher
John, I think you've missed my point. I'm currently 'exploding' by ',' to give me sub ranges and then 'exploding' the subtranges by '-' to get the actual start and end, adding the subtotals up for the page count. The problem is that I want to be able to replace the different types of '-' that can

Re: [PHP-WIN] ereg_replace help wanted

2004-09-29 Thread Felipe Gasper
So maybe explode by commas, then explode by \D to get ranges? -Felipe Gasper Quoth George Pitcher on 9/29/2004 10:52 AM... John, I think you've missed my point. I'm currently 'exploding' by ',' to give me sub ranges and then 'exploding' the subtranges by '-' to get the actual start and end, adding

[PHP-WIN] :)

2004-09-29 Thread ssb
I don't bite, weah! password: 55535 -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP-WIN] ereg_replace help wanted

2004-09-29 Thread trlists
On 29 Sep 2004 George Pitcher wrote: In short I'm looking to search for any character that is NOT one of the following: 0-9 cdilmvx , and replace it with '-' [chr(45)] (I do an initial strip of spaces at the beginning of the process). Try something like: $newstring =

[PHP-WIN] How To Connect USB Port Using PHP Script

2004-09-29 Thread susilo
Dear ALL, I Wanna connect my usb device ( usb flash disk ), does everybody know about the php script to get data from that device ? Regards, Susilo

[PHP-WIN] PHP-Win2k3

2004-09-29 Thread Dean L. Howen
Dear Friends, I've tried to install PHP 5.0.1 on Windows Server 2003 with IIS 6.0, but I can't make it work. Please give me some helpfull details information. -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP-WIN] PHP-Win2k3

2004-09-29 Thread Felipe Gasper
I've got it working; what's your issue? -Felipe Gasper Quoth Dean L. Howen on 9/28/2004 10:14 PM... Dear Friends, I've tried to install PHP 5.0.1 on Windows Server 2003 with IIS 6.0, but I can't make it work. Please give me some helpfull details information. -- Quidquid latine scriptum sit altum

Re: [PHP-WIN] How To Connect USB Port Using PHP Script

2004-09-29 Thread Frank M. Kromann
Most usb flash drives are mounted as any other disk drive and you can use PHP to read and write files the same way as you use a hard disk. - Frank Dear ALL, I Wanna connect my usb device ( usb flash disk ), does everybody know about the php script to get data from that device ?