need to copy a php database

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • baiatbun
    Registered User
    • Feb 2005
    • 35

    #1

    need to copy a php database

    Cheers guys,

    I need to copy a php database. Any scripts or software available for that ?

    thansk a lot, stay strong !!!!
  • biskoppen
    Confirmed User
    • Mar 2003
    • 5809

    #2
    Whats a php database?
    Submit my videos to make bank, tons of 5 minute videos offered right here

    Comment

    • Doc911
      Confirmed User
      • Feb 2004
      • 3695

      #3
      what kind of database? php can use almost anything.


      For PHP/MySQL scripts ICQ 161480555 or email [email protected]

      Comment

      • psili
        Confirmed User
        • Apr 2003
        • 5526

        #4
        for mysql:

        mysqldump --user=[user] --pass --opt [dbname] > [sqlfile.sql]

        copy [sqlfile.sql] to other database server

        mysql -u [user] -p [databasename] < [sqlfile.sql]
        Your post count means nothing.

        Comment

        Working...