[PHP-DB] Re: HTTP Auth for PHPMyAdmin

2004-12-22 Thread Mark Benson
Martin Norland wrote: >What do you mean proper HTTP authorization for PHPMyAdmin - do you want >it to log you in automatically, or do you want to use .htaccess to >protect your PHPMyAdmin scripts? > >By your statement of config file, and talking about PHPMyAdmin - I'm >assuming that you've configu

RE: [PHP-DB] Re: HTTP Auth for PHPMyAdmin

2004-12-22 Thread Peter Lovatt
set auth type to cookies Peter > -Original Message- > From: Mark Benson [mailto:[EMAIL PROTECTED] > Sent: 22 December 2004 10:55 > To: [EMAIL PROTECTED] > Subject: [PHP-DB] Re: HTTP Auth for PHPMyAdmin > > > Martin Norland wrote: > > >What do you mean proper HTTP authorization for PHPM

RE: [PHP-DB] Parse errors ,,, can you. impart me about it.

2004-12-22 Thread Ford, Mike
To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm On 21 December 2004 07:58, amol patil wrote: > hallo friend, > > i have developed simple and small database website using php ,html > and java script. > > but i am getting these

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Ford, Mike
To view the terms under which this email is distributed, please go to http://disclaimer.leedsmet.ac.uk/email.htm On 20 December 2004 21:50, Warren wrote: > Hello, > > I am running PHP 4.39 as a CGI under Tomcat 5.025, Linux 2.4.20-31.9. > Configure = './configure' '--with-java=/usr/java/j2sd

[PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Stéphane Pinel
Hello, I'm looking for PHP classes (free or cheap) that are able to generate Excel files (XML?) with a minimum of customization capabilities (styles, borders, colors...). Any idea ? Thanks in advance. Stéphane -- PHP Database Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.ph

Re: [PHP-DB] MYSQL

2004-12-22 Thread Miles Thompson
Balwant, Right now this is an algorithm question, not a PHP or MySQL problem. Define exactly what you want to see as output, what you have as inputs, and what process you would have to follow to achieve the output. But don't "suppose" - be specific. Then it's possible to fit it to a language: may

Re: [PHP-DB] MYSQL

2004-12-22 Thread Jochem Maas
Balwant Singh wrote: > hi to all, > > may somebody guide me on the following: > > I want to retrieve data from MYSQL and then want that PHP do calculation let hope your not asking how to connect to the DB. and perform a query... > - substract a particular field from its previous row. i.e. suppose i

RE: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Bastien Koert
Don't really need a class...simply output a csv file with the correct headers...and excel knows to open the csv files bastien From: Stéphane Pinel <[EMAIL PROTECTED]> To: "'PHP DB'" Subject: [PHP-DB] PHP Classes to generate Excel files ? Date: Wed, 22 Dec 2004 14:19:41 +0100 Hello, I'm looking f

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Stéphane Pinel
Le 22 déc. 04, à 15:12, Bastien Koert a écrit : Don't really need a class...simply output a csv file with the correct headers...and excel knows to open the csv files Yes but this way you can't get a minimum of customization features (styles, borders, colors...etc). XML Excel format can handle t

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Jochem Maas
try googling on 'php excelwriter' or 'php excel writer' if you require more than basic CVS (hint PEAR contains a class design to generate functionally rich XLS files). another cool trick (which Bastien hinted at) is to output the correct headers so that IE (its IE only i'm afraid) will star

Re: RE: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread John Holmes
> From: "Bastien Koert" <[EMAIL PROTECTED]> > Don't really need a class...simply output a csv file with the correct > headers...and excel knows to open the csv files It can even be an HTML table send with Excel headers and it'll open correctly. That's the easiest way, IMO, because you can inclu

RE: [PHP-DB] Comparing Two Values

2004-12-22 Thread Andre Matos
It is working now using === or !== Thanks a lot. Andre -- Andre Matos [EMAIL PROTECTED] -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 21, 2004 8:10 PM To: php-db@lists.php.net Cc: [EMAIL PROTECTED] Subject: Re: [PHP-DB] Comparing Two Valu

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
Hi Mike, You are a sharp one but alas that is not my real code. The real code for displaying var1 and var2 is: echo " variable 1 : $var1 "; echo " variable 2 : $var2 "; I have tried so many things to get this working, I am starting to think it is a CGI problem. -Original Message-

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread John Holmes
> From: Stéphane Pinel <[EMAIL PROTECTED]> > I'm looking for PHP classes (free or cheap) that are able to generate > Excel files (XML?) with a minimum > of customization capabilities (styles, borders, colors...). http://www.web-aware.com/biff/ This has been around quite a while. I don't if it's

[PHP-DB] Re: PHP Classes to generate Excel files ?

2004-12-22 Thread Manuel Lemos
Hello, on 12/22/2004 11:19 AM Stéphane pinel said the following: I'm looking for PHP classes (free or cheap) that are able to generate Excel files (XML?) with a minimum of customization capabilities (styles, borders, colors...). Any idea ? You may want to try this one. It won an innovation award

Re: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Jason Wong
On Thursday 23 December 2004 03:12, Keane, Warren A FIN:EX wrote: > You are a sharp one but alas that is not my real code. The real code for > displaying var1 and var2 is: Is there any reason why you originally posted bogus code and not your real code? When you post code, please make sure it's v

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
Jochem wrote: >one interim solution could be to write a function that fills the $_GET >and $_POST vars - getting an array from a string like >"var1=334343&var2=343434" is fairly trivial how does the following work Thanks but this would be impractical for the real application. I need to gather

Re: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Jochem Maas
Keane, Warren A FIN:EX wrote: Jochem wrote: one interim solution could be to write a function that fills the $_GET and $_POST vars - getting an array from a string like "var1=334343&var2=343434" is fairly trivial how does the following work Thanks but this would be impractical for the real app

RE: [PHP-DB] _POST, _GET, _REQUEST not working

2004-12-22 Thread Keane, Warren A FIN:EX
Jochem wrote: >> Thanks but this would be impractical for the real application. I need to >> gather >> customer data and write it to the database. I would likely use POST. I >> couldn't >> get POST to work either but am using _GET right now since I can at least >> see the query string value. >

Re: [PHP-DB] PHP Classes to generate Excel files ?

2004-12-22 Thread Ignatius Reilly
There is also the very good PEAR Excel Writer class. http://pear.php.net/package/Spreadsheet_Excel_Writer Ignatius - Original Message - From: "John Holmes" <[EMAIL PROTECTED]> To: "Stéphane Pinel" <[EMAIL PROTECTED]>; "'PHP DB'" Sent: 22 December 2004 20:54 Subject: Re: [PHP-DB] PHP Cla