[PHP] MySQL database export to Excel

2010-11-26 Thread Sotiris Katsaniotis
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 database! Can someone be so kind to point me in the right

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

[PHP] MySQL Database type

2004-12-28 Thread The Disguised Jedi
Which type of engine would y'all recommend for a user/customer and session data storage database? I'm currently using MyISAM, but I just was curious to see if you guys could tell me if you know of a better one, or tell me what you use. TIA, -- The Disguised Jedi [EMAIL PROTECTED] PHP rocks!

[PHP] MySql DATABASE creation date

2004-08-18 Thread Kevin
Is there any way to find out MySql DATABASE creation date using PHP and MySql functions? -- Kevin -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] MySQL Database Connection Question

2004-07-08 Thread Harlequin
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...? -- - Michael Mason Arras People www.arraspeople.co.uk

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

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

[PHP] Remote Javascript call to PHP MySQL Database

2002-01-06 Thread Richard Spangenberg
Does anyone have experience using Javascript on remote pages to capture data in a PHP MySQL database. I would like to build a customer profile database for a customer using a permanent cookie on a site visitor's machine to ID them and track their usage. Any suggestions would be appreciated

[PHP] Re: Remote Javascript call to PHP MySQL Database

2002-01-06 Thread Richard Spangenberg
te pages to capture data in a PHP MySQL database. I would like to build a customer profile database for a customer using a permanent cookie on a site visitor's machine to ID them and track their usage. Any suggestions would be appreciated. Moderator: I don't seem to be able to get the automate

[PHP] mysql database has gone away

2001-08-30 Thread rodrigo
There is a Mysql error that is driving me mad. My ISP won't claim resposibility for it and it tells me it is a scrpting error. I don't agree with them. The error number is 2006, and it seems to restart the database every now and then. Please advice me as to what may be causing this problem. The

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 crontab of linux to run a php script: in crontab: wget -q http

Re: [PHP] MySQL Database backup

2001-08-27 Thread Alex Sofronie
first, just the applications it recognizes (the web plugins installed), right? - Original Message - From: Alex Sofronie [EMAIL PROTECTED] To: PHP General [EMAIL PROTECTED]; Augusto Cesar Castoldi [EMAIL PROTECTED] Sent: Monday, August 27, 2001 7:40 PM Subject: Re: [PHP] MySQL Database backup

[PHP] MySQL Database backup

2001-08-26 Thread Alex Sofronie
I tried find a solution to backup a mysql database using php but i didn't find anything but the binary file transfer solution (just open and binary copy all the files in my database directory). But this is not a desired solution because it involves some security holes that I cannot afford. Can

Re: [PHP] MySQL Database backup

2001-08-26 Thread Chris Lambert
. /* Chris Lambert, CTO - [EMAIL PROTECTED] WhiteCrown Networks - More Than White Hats Web Application Security - www.whitecrown.net */ - Original Message - From: Alex Sofronie [EMAIL PROTECTED] To: PHP General [EMAIL PROTECTED] Sent: Sunday, August 26, 2001 3:28 PM Subject: [PHP] MySQL

[PHP] MySQL database

2001-05-16 Thread \[Inf\] F!RE-WALL
Yo, I'd like to use a MySQL database on my website. If I look at the PHP details of my site (see for yourself at http://infinity.shrimpwars.be/phpinfo.php) it says under the MySQL section: enabled. Well, if I create a testpage with this as content: ? mysql_connect(localhost, , ) or die (unable

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 I

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 for

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]... first

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 [Inf]