How can i establish the connectivity between back end psql and front end in html

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • ananya kapur

    How can i establish the connectivity between back end psql and front end in html

    How can i establish the connectivity between back end psql and front end in html
  • Frinavale
    Recognized Expert Expert
    • Oct 2006
    • 9749

    #2
    You need to implement an application that is executed on a web server.

    This application will establish connectivity with the database and generate HTML based on what it retrieves.

    It will then send the HTML it generates to the browser.

    When the user wants to do something (maybe do another search etc) they will click a button (or something) which will submit the HTML form to the application on the server so that this application can establish connectivity with the database and do what the user requested.

    These types of applications are developed using technologies like PHP, ASP/ASP.NET, Perl, Java (Java Server Pages ...jsp) etc.

    Look up the topic of developing dynamic websites.

    -Frinny

    Comment

    • Ananya kapur

      #3
      Thank you so much..needed a little more help.I am planning to create a community site.But not getting how to start with.what should be the sequence of things to be done.The front end will keep track of login ,create a new account if account does not exist,keep a track of friends,message s,basic details,upcomin g events. designing will be done through java but what shall be done in the back end..

      Comment

      • Ananya kapur

        #4
        thank you ..needed more help :)

        Thank you so much..but i am unable to get a clear picture of how should i start on with this project,i hardly have any idea and have to submit this project in a week s time.The designing part i guess will be taken care by java but what about the back end,what exactly has to be stored there and how..My site will have a login page having basic login details,sign up for new user,once the user logs in ,there will be a list of his friends,message s,upcoming events,details about himself and chat option if possible,so could you please help me how to get started with and is it not a better option to use html over java in terms of simplicity snd convenience,and if i use html..

        Comment

        • Frinavale
          Recognized Expert Expert
          • Oct 2006
          • 9749

          #5
          This is a pretty big undertaking to do from scratch.

          Consider researching products that already exist that you could expand upon.

          Otherwise, your first step will be to gather the requirements for the system.

          From there you will design the system (this does not involve any Java). Designing a system requires you to figure out what components will be needed to accomplish all of the tasks that are needed to meet the requirements. This involves breaking down the project into components that you can easily understand so that you easily write the code for the project (writing code is referred to as implementing).

          After all of the designing is done, then you should research the technologies that you are going to use (research JSP and databases...lik e MySql...that you are considering)

          Now, once you know exactly what you need to do, and you know about the technologies that you are going to use, you start implementing your project.

          This is Not a small undertaking.
          It is going to require days of requirement-gathering, designing, and research before you even get to the implementation.


          By the way, in web-development the "front-end" is typically the HTML that is generated. The "back-end" is anything that is executed on the server...it is the back-bone that generates the HTML that the user interacts with.

          -Frinny
          Last edited by Frinavale; Oct 7 '10, 04:56 PM.

          Comment

          Working...