skip to Main Content

As a beginner in coding, what are the things that I need to learn in creating a website that stores databases ex. personal details and other information and you can search it when you type a specific name? Also there are three of us working and beginner programmers so if there are any suggestions what app to collaborate on this project to communicate together, I would like to know. thank you

For starters, I learned html css but I don’t know what language to learn that covers the database. I am also currently learning git which I think might help in collaboration with my groupmates.

2

Answers


  1. Years ago, I ask myself the same question. From here you can go wherever you want. There are plenty of languages out in the wild :).

    My way was, because of HTML/CSS, JavaScript | TypeScript. I also do a lot of bash-scripting, so Bash was another station.
    Likewise, I made a stop at Python. For a while I was happy.

    But in the end, to store data in a database, you must lern SQLite3 | mySQL | MariaDB | PostgreSQL … (you don’t have to lern ALL database-languages simultaneously)

    Then, because Python makes me feel sad, I switched to Googles Go and a newer one Vlang.io V. These are my "main"-languages at the time and I freaking like them 🙂

    If I were you, I would invest a few days in these languages, ‘getting a taste’, so to speak. To find the language with which you harmonize best.
    There is no RIGHT or WRONG here.

    Login or Signup to reply.
  2. Firstly, You should learn about Back-end programming. You can learn any languages that can build a Restful API. For example: C# (.Net), Python (Django), JavaScript (NodeJS), Java (Spring Boot, MVC).

    After you learn how to build a collection of API. You can call this API from Front-end. Call it with fetch() function of JavaScript and interact the response result. Show it on HTML and custom the UI with CSS.

    Addition, you can learn FE framework/library as ReactJS, Angular, VueJS. Frameworks/libraries allow you build the UI quickly and conveniently.

    I hope you can success.

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