[PHP] gd error with latest source install

2003-12-04 Thread Rob Yelvington
Just downloaded and am in the process of installing php 4.3.4 Installing the bundled GD library and I get an error about "not able to locate libpng.a". This is on a Freebsd v4.3 box. I've got a few others with slightly older versions of PHP running with same bundled GD which compiled fine. Gu

Re: [PHP] how to keep decimals from rounding

2003-08-26 Thread Rob Yelvington
Curt, thanks for the reply and the suggestion. Truncating is exactly what I will do. Thanks! ~Rob Curt Zirzow wrote: * Thus wrote Rob Yelvington ([EMAIL PROTECTED]): Is there a way to surpress round() or number_format() from rounding decimal places? I have a value of ".253338&q

[PHP] how to keep decimals from rounding

2003-08-25 Thread Rob Yelvington
Is there a way to surpress round() or number_format() from rounding decimal places? I have a value of ".253338" being returned via a calc function. I take that value and multiply by 100 because I want "25.333" to be displayed. I've used round(), sprintf(), and number_format() and each of them

Re: [PHP] WYSIWYG editor for PHP

2003-08-22 Thread Rob Yelvington
Active State's Komodo and Zend Studio are both awesome! I used to use Dreamweaver, but it's syntax highlighting stinks...IMHO. ~Rob Bix wrote: I use dreamweaver in live data mode quite often, really works a treat! Set up a a site and in the testing server, just set it as /beta or the like, the

[PHP] float precision format not being kept

2003-08-22 Thread Rob Yelvington
stumped. Any light anyone can shed on this would be appreciated. ;) Thanks, ~Rob Yelvington -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: google style paginating

2003-08-22 Thread Rob Yelvington
The Pear Pager class works like a champeen, too. It'll paginate results however you'd like it to. ~Rob Chris W. Parker wrote: Robert Cummings on Thursday, August 21, 2003 4:46 PM said: Don't retrieve ALL the queries then only display a subset. Otherwise what's th