Do you provide phpMyAdmin web interface to manage the MySQL Database?

  • Yes, we provide that. You can login to DotNetPanel first
  • Create MySQL Database, create MySQL Database user and assigned to it
  • Then next to the MySQL Database name, there is a button "Browse Database"
  • Click that, and it will redirect you to the phpMyAdmin URL

 

  • 15 Users Found This Useful
Was this answer helpful?

Related Articles

I'm new to MySQL, where should I start?

The best source of MySQL information is the excellent on-line manual : ...

What does this error message means - Warning: Supplied argument is not a valid MySQL result resource and how do you solve it?

I think you got this message from PHP. You get this message when you are trying to access...

How do I delete a table from a database?

Use this SQL command : "DROP TABLE yourtablename"

How can I select random rows from a table?

SELECT * FROM table_name ORDER BY RAND(); Found at...

Select statement to join tables?

For a simple join: SELECT a.*, b.*FROM tblAlpha a, tblBeta bWHERE (a.keyfield = b.foreignkey);...