[PHP] quota class?

2003-01-13 Thread UberGoober
Has anyone run across a php class for handling filesystem quotas? (Reporting) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Source Guardian

2003-01-10 Thread UberGoober
What is the URL, is it like Zend encoder? "Christopher Ditty" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does anyone here use Source Guardian? I am about to purchase it and > thought I'd ask before I do. Any problems using it? > > Thanks > > CDitty >

[PHP] Re: PHP Editor Browser View? (Beginner Question)

2002-12-11 Thread UberGoober
You might consider downloading a package like foxserve (http://sourceforge.net/projects/foxserv) for your system. This is an apache/php bundle that will allow you to test your code from a local instance of php. "Paul Lazare" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROT

[PHP] Re: Snoopy Class

2002-12-09 Thread UberGoober
A tutorial to help you do *what* exactly? The readme provides plenty of examples: http://cvs.sourceforge.net/cgi-bin/viewcvs.cgi/snoopy/Snoopy/README?rev=1.6&; content-type=text/vnd.viewcvs-markup "Dl Neil" <[EMAIL PROTECTED]> wrote in message 112b01c29eb6$cf239f90$c900a8c0@jrbrown">news:112b01

[PHP] Re: PHP and Ensim Question

2002-12-05 Thread UberGoober
For those that don't know what ensim is, its a virtual hosting software (www.ensim.com), Mike - There is another setting in /etc/httpd/conf/httpd.conf to set safe mode off. I don't suggest you do this though. I would suggest you use the ensim bulliten board for these questions IMOHO. -- "Mike B

[PHP] Re: php/mysql report builder

2002-11-27 Thread UberGoober
http://www.phplens.com/ might be something you could use. "Michael P. Carel" <[EMAIL PROTECTED]> wrote in message 002d01c295b8$f0301800$[EMAIL PROTECTED]">news:002d01c295b8$f0301800$[EMAIL PROTECTED]... > hi to all; > > sorry for posting this mysql question again. im searching for a report > buil

[PHP] PHP zipcode distance class

2002-11-26 Thread UberGoober
Hello - There were several discussions on how to do zip code location lookups, distance checks, zipcode data, etc. Well, for everyone that was following those threads, check this out: http://www.sanisoft.com/ziploc/ Opensource (and free) php class to do everything you zipcode distances. Downright

Re: [PHP] MY CLIENT

2002-11-21 Thread UberGoober
I've had some of my posts moderated away, how do these jokers sneak them in? "Troy May" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Sorry, I'm holding out for the 126 million. :) > > > > -Original Message- > From: GEORGE EMEKA [mailto:[EMAIL PROTEC

[PHP] Re: cURL with PHP Help?

2002-11-20 Thread UberGoober
Have you tried this: http://curl.haxx.se/libcurl/php/examples/ Would help if you posted some code, or errors or something. I've used curl in several PHP applications successfully. Snoopy is actually a really awesome implementation of curl in php: http://sourceforge.net/projects/snoopy/ I replace

[PHP] Re: Listing a table

2002-11-19 Thread UberGoober
CHeck out ADODB, it makes this a pretty easy task. http://php.weblogs.com/adodb "Marco Bleeker" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hello, how would I go about listing a portion of a MySQL table, without an > overall selection criterium? I have a un

[PHP] Re: cURL with PHP Help?

2002-11-19 Thread UberGoober
Have you tried this: http://curl.haxx.se/libcurl/php/examples/ Would help if you posted some code, or errors or something. I've used curl in several PHP applications successfully. Snoopy is actually a really awesome implementation of curl in php: http://sourceforge.net/projects/snoopy/ I replace

[PHP] Re: How can database be exported to Microsoft Access?

2002-11-19 Thread UberGoober
Thats a toughy.. Your best bet is going to be dump the database to text, then find an importer into MS Access.. Yes, I know you said you don't have access, but I don't think you'll be able to create the access database without it. Mabey you have a friend or something with it. There are a bunch of

[PHP] Re: PHP SAPI modules

2002-11-19 Thread UberGoober
> Does anyone know if the PHP SAPI modules are better in the newer releases? > Are they currently stable enough for production websites? Better than..? Where you/are you having problems with them currently? I know many production win32 php environments. -- PHP General Mailing

[PHP] Re: Returning an array in a function

2002-11-19 Thread UberGoober
> How would I return an array of data with a function? return $array; -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Distance Based on Zip Code

2002-11-19 Thread UberGoober
Another resource to check out: http://www.onlamp.com/pub/a/php/2002/11/07/php_map.html "Vernon" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Does anyone know how I can set something up that tells the distance between > one Zip Code and another? I'm needing t

[PHP] Re: Distance Based on Zip Code

2002-11-18 Thread UberGoober
http://001034.samff.com/ Nice resource on the matter. "Ubergoober" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > This seems to be a common question. > > You can buy this: > http://www.zipwise.com/ <- @ $130 its a total

[PHP] Re: Distance Based on Zip Code

2002-11-18 Thread UberGoober
This seems to be a common question. You can buy this: http://www.zipwise.com/ <- @ $130 its a total deal. I went thru the same hassle to get the data from the post office/census data and it took me over a week to get everything. You have to spend endless amounts of time searching the web. Its a pa

Re: [PHP] [ANN] Zip code db available with latitude and longitude

2002-11-11 Thread UberGoober
I've been down the road of getting all that data from the "Free" government sources. And I'll tell ya, spending the $130 to get this data is more than worth the week I spent getting everything together from census data. Think it through, if you bill out @ $100/hour as a developer, you basically mor

Re: [PHP] isset doesn't like "->"?

2002-11-10 Thread UberGoober
> That's because isset() is expecting a variable, not a function. In your > first example, you're trying to see if a function is set, not a > variable. In your second example, you're doing it right... > > ---John Holmes... That actually makes sense once I thought about it, a function referencing

[PHP] isset doesn't like "->"?

2002-11-10 Thread UberGoober
I don't know if this is a bug, or what, but I get an error when trying the following if ( isset($adodbobject->Fields('myresult') ) ) { // do something } PHP throws an error ( not warning ) saying: Parse error: parse error, expecting `','' or `')'' in /path/to/index.php on line 45 However, when I