Re: [PHP] Drawing graphs - opinions

2002-03-23 Thread David Ford
Take a look at jpgraph, it's on freshmeat. David Lee P Reilly wrote: Hi, I see there a number of PHP scripts/libraries out there for the purpose of graphing data. Which one is considered to be the best, most powerful / easiest to use? I need to plot X/Y graphs for some data sets with vertical

Re: [PHP] Two easy HTML/CSS questions

2002-03-18 Thread David Ford
I beg to differ :) FORM INPUT[type=text] { height: 16px; width: 8em; } FORM INPUT[type=text]:hover { color: inherit; background-color: yellow; } Works just dandy. -d Hunter, Ray wrote: Actually, If I understand correctly, you want the actual text field box to be the same size as the text

[PHP] pg_connect and error messages

2002-03-14 Thread David Ford
Is there any way to get an error message via pg_errormessage() when using pg_connect() and it fails? Currently I have $conn=@pg_connect(), I don't want error text showing up where the HTML cursor is, I intend to put any error text elsewhere. Unfortunately, $conn is FALSE and

[PHP] apache md5 vs. php md5

2002-03-14 Thread David Ford
Does anyone have a crypt() function that can use the $apr1$ prefixed salt that apache's htpasswd uses? David -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] apache md5 vs. php md5

2002-03-14 Thread David Ford
On the same box, php is generating $1$ md5 hashes properly, two char and $apr1$ hashes as DES. The htpassword is generating $apr1$ hashes. Where is the gadget that needs fixed? David Rasmus Lerdorf wrote: The PHP one supports that if your OS does. On Thu, 14 Mar 2002, David Ford wrote

Re: [PHP] md5() different from md5sum on Linux

2002-03-12 Thread David Ford
hehehyou forgot something :) echo blah is actually blah\n # echo -n blah |md5sum 6f1ed002ab5595859014ebf0951522d9 stdin -d Mikhail Avrekh wrote: Hello, Don't know if this is a question of (mis)configuration; I'm posting this just in case someone had run into this before: PHP's native