Re: [PHP-DB] BRU Help

2003-11-10 Thread David T-G
Nitin -- ...and then Nitin said... % % I'm sorry, I know this is not the list, to ask this question, but I couldn't find the right one. You're right; it isn't. Neither is the PHP list. Although I've heard of it, I've never had any involvement with BRU; I think it's safe to say I'm pretty new

[PHP-DB] form not working...

2003-11-10 Thread jas
For some reason my form to edit selected items is not working, I think I need a new set of eyes. Any help is appreciated... Jas // inc.php function db_retrieve() { require 'dbase.inc.php'; $tble = $_SESSION['table']; $show = @mysql_query("SELECT * FROM $tble LIMIT 0, 15",$db)or die(mysql_error(

RE: [PHP-DB] form not working...

2003-11-10 Thread Gary Every
Don't you need to start your form BEFORE your 's -Original Message- From: jas [mailto:[EMAIL PROTECTED] Sent: Monday, November 10, 2003 11:38 AM To: [EMAIL PROTECTED] Subject: [PHP-DB] form not working... For some reason my form to edit selected items is not working, I think I need a new

Re: [PHP-DB] form not working...

2003-11-10 Thread jeffrey_n_Dyke
i'd be curious what your actual problem is? here's a question though.,...would these ever work?. >> if ((!isset($_POST['edit'])) or ($_POST = "")) { $_SESSION['table'] = "t_items"; call_user_func("db_retrieve"); } elseif ((isset($_POST['edit'])) or (!$_POST = "")) { <>> You

Re: [PHP-DB] form not working...

2003-11-10 Thread jas
Yeah, sorry that code wasn't updated... after the $_session['table'] is called the doesn't attempt to post the data form the $_session['table'] if that makes sense... all the error checking isn't the problem jas "Jeffrey N Dyke" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > i'd

[PHP-DB] dynamic graph on web site

2003-11-10 Thread Hull, Douglas D
In php/mysql is there a way to create a bar graph and/or a pie chart dynamically and then push the chart to the web? So depending on what information was selected during the filtering process would determine what data would be used to create the particular graph. Thanks, Doug -- PHP Database

Re: [PHP-DB] dynamic graph on web site

2003-11-10 Thread Ignatius Reilly
The jpgraph library is what you're looking for. _ - Original Message - From: "Hull, Douglas D" <[EMAIL PROTECTED]> To: "Note To php mysql List (E-mail)" <[EMAIL PROTECTED]> Sent: Monday, November 10, 2003 8:36 PM Subject: [PHP-DB] dynamic graph on web site In php/

Re: [PHP-DB] dynamic graph on web site

2003-11-10 Thread jeffrey_n_Dyke
jpgraph does a fantastic job of this, and is very easy to use. I highly reccomend it!! http://www.aditus.nu/jpgraph/. hth Jeff "Hull