Jump to content

Web-based Database Programming

- - - - -

This topic has been archived. This means that you cannot reply to this topic.
7 replies to this topic

#1
carter

carter

    Newbie

  • Members
  • Pip
  • 1 posts
Hello All,

I used to be a ANSI C programmer about 5 years ago.

However I now plan to go back into programming again.

I am interested in web-based database kind of applications.

What language should I learn given today's new languages?

As I said, i'm more interested in the Web-based database stuff


Anything to do with databases on the web etc

such as extracting, displaying, or manipulating databases or data to and from the web.

cheers

#2
WingedPanther

WingedPanther

    A spammer's worst nightmare

  • Moderators
  • 16,831 posts
PHP, HTML, CSS, JavaScript, SQL
Programming is a branch of mathematics.
My CodeCall Blog | My Personal Blog

#3
relapse

relapse

    Programming Expert

  • Members
  • PipPipPipPipPipPip
  • 476 posts
You need to SQL and a web development language.

#4
JCoder

JCoder

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 245 posts
when performance and scalability is not an issue and project is small: PHP
otherwise: Java (e.g. Spring + Hibernate) or ASP.NET

#5
Overload

Overload

    Newbie

  • Members
  • PipPip
  • 16 posts
Id say try out PHP with SQL

#6
Guest_Jordan_*

Guest_Jordan_*
  • Guests

JCoder said:

when performance and scalability is not an issue and project is small: PHP
otherwise: Java (e.g. Spring + Hibernate) or ASP.NET

Perhaps Java performs better than PHP but I seriously doubt ASP.NET would benchmark faster than PHP.

#7
Shaddix

Shaddix

    Programmer

  • Members
  • PipPipPipPip
  • 102 posts
HTML: to integrate your work into a webpage
CSS: to make your webpage look nice
PHP: to make your webpage dynamicly (displaying the most recent data without always having to edit the html)
SQL: to querry the data in corporation with PHP

#8
JCoder

JCoder

    Programming Professional

  • Members
  • PipPipPipPipPip
  • 245 posts

Jordan said:

Perhaps Java performs better than PHP but I seriously doubt ASP.NET would benchmark faster than PHP.

OFC it would. It is compiled just as Java is. It can do database connection pooling just as Java. And it can benefit from in-process caching just as Java can. PHP can't.