-1

i'm new in web-development and i have this website where currently i update the articles by changing my source codes. I wanna setup a database where i can add this new articles and my website can fetch it from there so that it can reflect on my website

Point me to some right direction and let me know if my question is not clear enough?

jmargolisvt
  • 5,722
  • 4
  • 29
  • 46
remy boys
  • 2,928
  • 5
  • 36
  • 65

1 Answers1

1

The question is quite broad but I'll try to explain it briefly. For making a website with dynamic content, you need to have a database (mysql for example) which will store your articles.

You'll need to have a server (ex apache) & You'll then have to code (in PHP, Python, C# etc) which will handle a user's request. When a user open's your webpage, the request goes to your apache server, it then executes the appropriate code (an example task of a php code could be fetch articles from the database) and return a response to the user.

Yousuf Khan
  • 334
  • 3
  • 12