[PHP-WIN] LDAP versus DB

2001-10-03 Thread Paul Meagher
it the search time will be alot faster using LDAP than MySQL. Is this correct? Is there any other reason to use LDAP over MySQL that I am missing out on here? Regards, Paul Meagher -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional

Re: [PHP-WIN] Re: Status of a stable ISAPI??

2001-09-07 Thread Paul Meagher
ve no recollection of where I read this so take what I say with a grain of salt until you hear otherwise. At any rate, it would seem a better strategy to seek such invitations from Microsoft than to throw alot of effort at reverse engineering the black box? Regards, Paul Meagher - Original Me

Re: [PHP-WIN] Parsing PDF files

2001-08-31 Thread Paul Meagher
can extract pretty easily the header, like: Subject, > > Creator, Author etc... But extracting values in a table may not that be so > > easy as the objects creation in the file are dependent on the file history > > and in addition the pdf file may be in a binary form. > >

Re: [PHP-WIN] Parsing PDF files

2001-08-31 Thread Paul Meagher
ues in a table may not that be so > easy as the objects creation in the file are dependent on the file history > and in addition the pdf file may be in a binary form. > Alain > > On Fri, Aug 31, 2001 at 12:16:38PM -0300, Paul Meagher wrote: > > Wondering if anyone has tr

[PHP-WIN] Parsing PDF files

2001-08-31 Thread Paul Meagher
Wondering if anyone has tried to parse out a table of information from a PDF file? Is it a matter of opening the file, looping through its contents line-by-line looking for tags that demarcate table cell boundaries and extracting the relevant cell values? I figured if Google can index PDF conten

Re: [PHP-WIN] - PHP (Win32) and sockets -

2001-06-24 Thread Paul Meagher
The 4.0.7 development snapshot at www.php4win.de has socket support. Haven't tested it however. Regards, Paul Meagher - Original Message - From: "el Fakir" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 24, 2001 6:34 PM Subject: [PHP-WIN

Re: [PHP-WIN] crc32

2001-06-24 Thread Paul Meagher
Hi Matti, At the PHP level, there is some checksum code here and I thought that Zend had some relevant code as well in their repository. http://px.sklar.com/code-pretty.html?code_id=389 On linux, there is a function called checksum that can be invoked using a system call. Not sure if there is

[PHP-WIN] Getting Postgres and PHP to work together

2001-06-24 Thread Paul Meagher
I sucessfully installed the cygwin version of postgres on Windows ME (using latest version of cygwin distro). I can connect to the postgres server and create databases using psql. I am now trying to connect to it from PHP. I downloaded the latest development snapshot from php4win (php-4.0.7-dev

Re: [PHP-WIN] Get the contents of the textarea "as is"

2001-06-22 Thread Paul Meagher
This might work. Untested. $tokens = explode(" ", $message); $num_tokens = count($tokens); for ($i = 0; $i < $num_tokens; $i++) { $new_message .= $token . " "; } $new_message = rtrim($new_message); echo $new_message; Regards, Paul Meagher - Original Message

Re: [PHP-WIN] extracting email addresses

2001-05-17 Thread Paul Meagher
ts. There is an element of mind reading involved. A better term is sense-making. I suspect that "good" developers can "read minds" based on pattern completion arising from experience in similiar situations. Personally, I believe in alot of mind reading and prototype development t

[PHP-WIN] Case issue with Mysql on windows

2001-05-14 Thread Paul Meagher
there any way to enforce case sensitivity in Table names? Regards, Paul Meagher -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP-WIN] RE: New function help

2001-05-13 Thread Paul Meagher
There is a builtin array_reverse function in PHP. You just need to reverse the name of the function your were looking for :-) Regards, Paul Meagher - Original Message - From: "Tim Lofstrom" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, May 11, 2001

Re: [PHP-WIN] XML-RPC for Windows

2001-05-04 Thread Paul Meagher
server has some nice debugging and logging features and the API for constructing message responses is simple and easy to use. I didn't have much success getting the desktop GUI working. Let me know if you are successful in that regard. Regards, Paul Meagher "John Lim" &l

[PHP-WIN] XML-RPC for Windows

2001-05-03 Thread Paul Meagher
re to work? See: http://www.phpbuilder.com/columns/luis20010329.php3?print_mode=1 I noticed that there is a PHP extension for Dan Libby's XML-RPC c libary. http://sourceforge.net/forum/forum.php?forum_id=77942 Is there any plans to add this extension to PHP? Looks like a nice API. Regard

Re: [PHP-WIN] dynamic pulldowns from DB

2001-04-19 Thread Paul Meagher
Check out Leon Atkinson's Chained Selectors article at Zend. http://www.zend.com/zend/tut/drop-down.php Regards, Paul Meagher - Original Message - From: "Robert Trembath" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]>; <[EMAIL PROTECTED]> Sent: Thursda

[PHP-WIN] CVS for win

2001-03-09 Thread Paul Meagher
just running a CVS client or do you have to run a CVS server locally as well? Any advice, pointers, etc... would be appreciated. Regards, Paul Meagher -- PHP Windows Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To

Re: [PHP-WIN] "xml + xsl to html" sample code

2001-02-12 Thread Paul Meagher
PHPBuilder.com has a good article: Transforming XML with XSL using Sablotron - http://www.phpbuilder.com/columns/justin20001025.php3 Regards, Paul - Original Message From: "Antonio Lopez" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, February 12, 2001 12:06 PM Subject: [PHP

Re: [PHP-WIN] problems with time diffrences

2001-01-12 Thread Paul Meagher
I believe you need to set a "tz" variable before you call your date functions. If you do a search for "tz" in the mailing list archives you can probably find a snippet that will show you how to do it. Regards, Paul - Original Message - From: "Tomasz Abramowicz" <[EMAIL PROTECTED]> To: <

[PHP-WIN] Equivalent ways to populate an array.

2001-01-09 Thread Paul Meagher
I can successfully populate the params array in this way: class MyDB extends DB { var $params = array( 'phptype' => "mysql", 'hostspec' => "localhost", 'database' => "testdb", 'username