RE: Using PHP to copy tables

2004-06-18 Thread Michael McTernan
Dear Mark,

You also seem to have used my email address before.  Please correctly
configure your mailer such that the from address is correctly reported as
[EMAIL PROTECTED], and not mine.

Thanks,

Mike

 -Original Message-
 From: Michael McTernan
 Sent: 08 April 2004 18:36
 To: [EMAIL PROTECTED]; [EMAIL PROTECTED]
 Subject: Re: Using PHP to copy tables


  Is there an easy way to create an HTML page that will copy
 selected tables
  to backup copies on the same server? I want to create an administration
  page for my client to be able to backup their database
 whenever they see
  fit. But, I can't give them direct access to the MySQL server and don't
  want them backing up to their hard drive. I prefer to simply copy the
  tables to backup versions on the server so that if problems
 arise, I can
  log into the server and simply copy the backups to the originals.

 Here is what I have used before...but this might be for you to
 run as a cron
 task and be transparent to them.

 http://www.silisoftware.com/scripts/index.php?scriptname=backupDB


 Mark Súsol
 ---
 u l t i m a t e ­ CreativeMedia
 Web | Print | CD Media | eCommerce
 www.ultimatecreativemedia.com
 Ph: 301-668-0588


 --
 MySQL General Mailing List
 For list archives: http://lists.mysql.com/mysql
 To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]






-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Using PHP to copy tables

2004-04-08 Thread Daniel Clark
Sound like a great idea!


 Is there an easy way to create an HTML page that will copy selected tables
 to backup copies on the same server? I want to create an administration
 page for my client to be able to backup their database whenever they see
 fit. But, I can't give them direct access to the MySQL server and don't
 want them backing up to their hard drive. I prefer to simply copy the
 tables to backup versions on the server so that if problems arise, I can
 log into the server and simply copy the backups to the originals.

 Thanx in advance.
 --
 Robb Kerr


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Using PHP to copy tables

2004-04-08 Thread Arthur Radulescu
Try using such command from PHP...

system($MYSQLDUMP --opt --user=$USER --password=$PASSWORD $DATABASE_NAME
$GZIP -  $BKDIR/$newfile.gz,$status);

where
$MYSQLDUMP is the mysqldump path
$GZIP is the path to gzip
$BKDIR is the path to the backup folder





Looking for a job!? Use the smart search engine!!
Find a Job from Millions WorldWide...
http://search.jobsgrabber.com



-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Using PHP to copy tables

2004-04-08 Thread Mark Susol | Ultimate Creative Media
 Is there an easy way to create an HTML page that will copy selected tables
 to backup copies on the same server? I want to create an administration
 page for my client to be able to backup their database whenever they see
 fit. But, I can't give them direct access to the MySQL server and don't
 want them backing up to their hard drive. I prefer to simply copy the
 tables to backup versions on the server so that if problems arise, I can
 log into the server and simply copy the backups to the originals.

Here is what I use...



Mark Súsol
---
u l t i m a t e ­ CreativeMedia
Web | Print | CD Media | eCommerce
www.ultimatecreativemedia.com
Ph: 301-668-0588


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



Re: Using PHP to copy tables

2004-04-08 Thread Mark Susol | Ultimate Creative Media
 Is there an easy way to create an HTML page that will copy selected tables
 to backup copies on the same server? I want to create an administration
 page for my client to be able to backup their database whenever they see
 fit. But, I can't give them direct access to the MySQL server and don't
 want them backing up to their hard drive. I prefer to simply copy the
 tables to backup versions on the server so that if problems arise, I can
 log into the server and simply copy the backups to the originals.

Here is what I have used before...but this might be for you to run as a cron
task and be transparent to them.

http://www.silisoftware.com/scripts/index.php?scriptname=backupDB


Mark Súsol
---
u l t i m a t e ­ CreativeMedia
Web | Print | CD Media | eCommerce
www.ultimatecreativemedia.com
Ph: 301-668-0588


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]