RE: [PHP-DB] password input type

2004-04-06 Thread Tyler Replogle
the onlooker From: matthew perry [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: [PHP-DB] password input type Date: Mon, 05 Apr 2004 13:14:17 -0500 Does using a pasword input type input name=password type=password make the transfer more secure from someone sniffing my connection or does it

RE: [PHP-DB] PDFLib

2004-04-06 Thread N . A . Morgan
http://www.fpdf.org I swear by it as well. Neil Morgan -Original Message- From: Peter Beckman [mailto:[EMAIL PROTECTED] Sent: 06 April 2004 03:39 To: PHP-DB Mailing List Subject: Re: [PHP-DB] PDFLib I LOVE FPDF. I don't know where I found it, but I can insert images, it wraps text

[PHP-DB] HELP: mySQL table name

2004-04-06 Thread Adrian Donoiu
I need information about how can I get the table name from this query : select * from test_table as t when I use : $field=mysql_fetch_field($result, $i); $field-table return the name of the table as t but I need the real name of the table test_table. How can I do

Re: [PHP-DB] HELP: mySQL table name

2004-04-06 Thread John W. Holmes
From: Adrian Donoiu [EMAIL PROTECTED] I need information about how can I get the table name from this query : select * from test_table as t when I use : $field=mysql_fetch_field($result, $i); $field-table return the name of the table as t but I need the real name of the table

[PHP-DB] Graphing - bar charts

2004-04-06 Thread Craig Hoffman
Hi there: I am looking for an open source and simple PHP script that will graph (bar) a few MySQL fields. Does anyone have any recommendations? __ Craig Hoffman - eClimb Media v: (847) 644 - 8914 f: (847) 866 - 1946 e: [EMAIL PROTECTED] w: www.eclimb.net

Re: [PHP-DB] Graphing - bar charts

2004-04-06 Thread jeffrey_n_Dyke
Hi there: Hello, I am looking for an open source and simple PHP script that will graph (bar) a few MySQL fields. Does anyone have any recommendations? I'd suggest the jpgraph OO lib. Very easy to get simple graphs up and running. so long as you have gd/jpeg available to your php. With

Re: [PHP-DB] Graphing - bar charts

2004-04-06 Thread John W. Holmes
From: Craig Hoffman [EMAIL PROTECTED] I am looking for an open source and simple PHP script that will graph (bar) a few MySQL fields. Does anyone have any recommendations? The easiest way is to just have an image that you dynamically vary with width of img src=dot.jpg height=10 width=$width

Re: [PHP-DB] Graphing - bar charts

2004-04-06 Thread Ignatius Reilly
jpgraph is great http://www.aditus.nu/jpgraph/ open source, very reasonably priced Ignatius _ - Original Message - From: Craig Hoffman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 4:55 PM Subject: [PHP-DB] Graphing - bar charts Hi

[PHP-DB] help desk software

2004-04-06 Thread redhat
Anybody out there familiar with some helpdesk software? I found some called teacup that runs as a cgi and used Postgres but I wanted to see if I could find something that was PHP/MySQL based. Any ideas out there? thanks, DF -- PHP Database Mailing List (http://www.php.net/) To unsubscribe,

RE: [PHP-DB] help desk software

2004-04-06 Thread Will
Go to http://hotscripts.com -Original Message- From: redhat [mailto:[EMAIL PROTECTED] Sent: Tuesday, April 06, 2004 1:21 PM To: phplist; fedoralist Subject: [PHP-DB] help desk software Anybody out there familiar with some helpdesk software? I found some called teacup that runs as a

[PHP-DB] How to troubleshoot MySQL Error 1040: Too many processes

2004-04-06 Thread John Hicks
I need a little direction for troubleshooting a problem I'm having with PHP and MySQL. Twice recently my little homebrew PHP/MySQL content management system has essentially crashed when MySQL starts returning a 1040 error: Too many connections. Restarting MySQL fixes things ... for a little

Re: [PHP-DB] Graphing - bar charts

2004-04-06 Thread matthew perry
Bar graphs are very easy to use with PHP. It's just a table columns of varying height. I wrote this a long time ago. To be honest it isn't very good code and I think I got the ideas from someone else. Regardless it should give you an idea. You basically pass in an array of dollar amounts and

Re: [PHP-DB] How to troubleshoot MySQL Error 1040: Too many processes

2004-04-06 Thread John W. Holmes
From: John Hicks [EMAIL PROTECTED] Twice recently my little homebrew PHP/MySQL content management system has essentially crashed when MySQL starts returning a 1040 error: Too many connections. Restarting MySQL fixes things ... for a little while at least. [snip] Most of my connections are

[PHP-DB] include function

2004-04-06 Thread Craig Hoffman
Someone tell me why this isn't working? I keep getting a parser error on line 36 (the last include). I'm running PHP 4.3.5 if that helps. include (include/dbadmin.php); include (jpgraph/src/jpgraph.php);    include (jpgraph/src/jpgraph_bar.php);

Re: [PHP-DB] include function

2004-04-06 Thread Marcjon Louwersheimer
did you make sure the previous line had a ; at the end? Check that first. - Original message - From: Craig Hoffman [EMAIL PROTECTED] To: [EMAIL PROTECTED] Date: Tue, 6 Apr 2004 22:24:27 -0500 Subject: [PHP-DB] include function Someone tell me why this isn't working? I keep getting a