Re: [PHP] MySQL database export to Excel

2010-11-26 Thread Steve Staples
On Fri, 2010-11-26 at 15:21 +0200, Sotiris Katsaniotis wrote: > Greetings fellow PHP developers! > > I am looking of a relatively simple way to export a whole database into > an Excel file. I have several methods to export tables to Excel files > but unfortunately I have failed to export a whole

Re: [PHP] MySQL Database type

2004-12-29 Thread Brent Baisley
It depends on what you are trying to do. If you need full text searching, MyISAM is what you should be using. If you are doing transactions, InnoDB is what you probably want to use. If you write a lot to the database, InnoDB may be better, if you read a lot MyISAM may be better. But that depend

Re: [PHP] MySQL Database Connection Question

2004-07-08 Thread John Nichel
Harlequin wrote: I have a user registration form that asks new users to register. However, Do I post the MySQLconnection string in the page they are completing or in the later page that the data is posted to, or both...? Not sure I follow what you're asking, but you only need to open a connection

Re: [PHP] MySQL Database Connection Question

2004-07-08 Thread James E Hicks III
On Thursday 08 July 2004 09:59 am, Harlequin wrote: > I have a user registration form that asks new users to register. However, > Do I post the MySQLconnection string in the page they are completing or in > the later page that the data is posted to, or both...? I don't think I understand your ques

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
"PHP General" <[EMAIL PROTECTED]>; "Augusto Cesar Castoldi" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 7:40 PM Subject: Re: [PHP] MySQL Database backup > > This script uses the MyPHPAdmin > > (http://phpwizard.net/projects/phpMyAdmin/) dump, he >

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
Thanks a lot. - Original Message - From: "Augusto Cesar Castoldi" <[EMAIL PROTECTED]> To: "Alex Sofronie" <[EMAIL PROTECTED]> Sent: Monday, August 27, 2001 6:22 PM Subject: Re: [PHP] MySQL Database backup > Alex, > > i'm using the cronta

Re: [PHP] MySQL Database backup

2001-08-26 Thread Chris Lambert
The easiest way would be to call mysqldump from PHP (system, exec, backticks, whatever) and pipe it to a file, all from the command line. This would backup the core data in the form of valid MySQL statements. If you have several indexes, this method will actually produce smaller files as well. /*

Re: [PHP] MySQL database

2001-05-16 Thread \[Inf\] F!RE-WALL
Huh? What about Windows? "Jack Dempsey" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > setup an account with a username and password and flush your > privileges...see if you can login on the command line...after that > works, then try it with php > > -jack > >

Re: [PHP] MySQL database

2001-05-16 Thread \[Inf\] F!RE-WALL
Erm..I'm using windows. And euhI have MySQL installed, but I don't know if it's running. Anyway, the phpinfo() returns that "MySQL" is enabled.so I guess it must be working. ""Julia A. Case"" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... >

Re: [PHP] MySQL database

2001-05-16 Thread Jack Dempsey
setup an account with a username and password and flush your privileges...see if you can login on the command line...after that works, then try it with php -jack "[Inf] F!RE-WALL" wrote: > > Yo, > > I'd like to use a MySQL database on my website. If I look at the PHP details > of my site (see

Re: [PHP] MySQL database

2001-05-16 Thread Julia A. Case
first off, is the MySQL database running? you can do a ps -xa | grep mysql to see... second you need to enter a username and password on the mysql_connect line.. Hope this helps, Julia Quoting [Inf] F!RE-WALL ([EMAIL PROTECTED]): > Yo, > > I'd like to use a MySQL database on my website. If