我在部署网站时如何访问我的管理页面?[适合初学者]

I can code. But I'm not experienced in terms of website deployment. I want to build a website with a registration form (w/ DB). I know how to do it but I don't how it will work when I deploy it. How can I access my admin page in that case?

If you have install phpmyadmin on wamp or xamp e.t.c you can easy access phpmyadmin by going to

Http://localhost/phpmyadmin

If you have install it on a server you have to enter the ip of the server

Http://192.168.1.100/phpmyadmin

In both cases the ip will work Dont forget to replace the ip with your server ip

The same way you access it locally. but by replacing the localhost address with your domain address.

Let's say that locally you have a login page that you access like this:

http://localhost/my_webiste/admin/login.php

Then when you upload your webiste on your own host then you can access like this:

http://www.my_domain.com/admin/login.php