i try to make a backup of database (mysql/php3) by copy db from one host to another.
but i can't find a command to copy the full database or a complete table.
please help me :]
use mysqldump to dump your database to a text file mysqldump mydatabase >mydatabase.sql
Then use
mysql <mydatabase.sql
on your other machine to replicate the database
Hope that helps Red
special thx