skip to Main Content

I have created a database in MySQL using XAMPP But In Some How My XAMPP Server is Not Working Now I am trying to Get My data Back

2

Answers


  1. It’s in

    xamppmysqldata

    folder. Or you can export the database in PHPmyadmin.

    Login or Signup to reply.
  2. If you use Linux, you can install mysql-client and mysql-server:

    sudo apt-get install mysql-client
    sudo apt-get install mysql-server
    

    and then access to phpMyAdmin with navigate to where you extract mysql. Then run this command:

    php -S localhost:80
    

    If you use windows, you can use an alternative software instead. I think Laragon is a good alternative software.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search