I have made a database locally using Xampp and now i want that database to be hosted on webserver. i have no idea how to do so i have also searched but i'm unable to get any proper tutorial or detailed guide for this. Really looking forward for some guideline, Thanks.
Asked
Active
Viewed 1,003 times
1
-
It is unclear what you mean by "making the database global". Do you have a public webserver and you want to deploy your application and data to this server? Please try to change your question in a way that makes it clear what you try to do. – luksch Sep 25 '16 at 08:39
-
@luksch Re-check now. actually i want my local database to be accessed by others that would be done by hosting it on a web server, right? so i want to know how to do that!? – shahtaj khalid Sep 25 '16 at 08:48
2 Answers
0
If you have access to PhpMyAdmin on the target Webserver, you could create a Database dump of your local Database via PhpMyAdmin (select your Db, then Click "Export") which you can then import into the target Server.

Niklas S.
- 1,046
- 10
- 22
-
can you suggest me any Webserver that would be good in my situation? As I'm new to the Web side i don't know much related to this. – shahtaj khalid Sep 25 '16 at 08:57
0
- export your database and save.
- Upload into webserver.
- Create database,user and setting user previlages in remote host.
- import the sql.
- Done.
if the sql file is large, better process with ssh.

Rhezashan
- 81
- 6
-
Thanks!! but can you tell me What WebServer should i use and how to deal with it. Actually i'm new to this Web side and i don't have much idea about it. – shahtaj khalid Sep 25 '16 at 09:15