You are viewing our Forum Archives. To view or take place in current topics click here.
What is the best web programming language?
Posted:

What is the best web programming language?Posted:

99rock99
  • Resident Elite
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
I am wondering what is the best programming language to make a professional website. I can program Java, Actionscript, html & css with references.

I would like to make better website then the basic ones that I can do. Here are some example sites that have elements that I would like to know how to program:

[ Register or Signin to view external links. ]
[ Register or Signin to view external links. ]
thetechgame.com (YAY)

and others like the ones listed above.
#2. Posted:
FinancialChad
  • Summer 2020
Status: Offline
Joined: Apr 10, 200915Year Member
Posts: 7,581
Reputation Power: 1576
Status: Offline
Joined: Apr 10, 200915Year Member
Posts: 7,581
Reputation Power: 1576
Well there is on specific language to program a language in... You implement other languages into the website. Like with CSS into HTML. You style with CSS, but it is included in the the HTML code;

<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4de;
}
</style>
</head>

<body>

<h1>Bold, big text here</h1>
<p>Text here</p>

</body>
</html>
#3. Posted:
Kyle93
  • Retired Staff
Status: Offline
Joined: Jun 25, 201013Year Member
Posts: 4,078
Reputation Power: 2628
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
Status: Offline
Joined: Jun 25, 201013Year Member
Posts: 4,078
Reputation Power: 2628
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
John_US wrote Well there is on specific language to program a language in... You implement other languages into the website. Like with CSS into HTML. You style with CSS, but it is included in the the HTML code;

<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4de;
}
</style>
</head>

<body>

<h1>Bold, big text here</h1>
<p>Text here</p>

</body>
</html>


Bleh. Inline style sheets. ALWAYS use external.

Use php. That can include HTML and allows you to have many features of PHP. Most basic sites will use HTML and CSS. So depends on the site you want.
#4. Posted:
-Lewis
  • TTG Senior
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 1,297
Reputation Power: 56
Status: Offline
Joined: Feb 06, 201014Year Member
Posts: 1,297
Reputation Power: 56
A few languages to take a look at:
- HTML
- CSS
- PHP
- Javascript (& jQuery?)

To create good looking websites like the ones you listed don't only need good programming skills, but also graphics skills

Have fun!
#5. Posted:
FinancialChad
  • Summer 2020
Status: Offline
Joined: Apr 10, 200915Year Member
Posts: 7,581
Reputation Power: 1576
Status: Offline
Joined: Apr 10, 200915Year Member
Posts: 7,581
Reputation Power: 1576
Kyle93 wrote
John_US wrote Well there is on specific language to program a language in... You implement other languages into the website. Like with CSS into HTML. You style with CSS, but it is included in the the HTML code;

<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4de;
}
</style>
</head>

<body>

<h1>Bold, big text here</h1>
<p>Text here</p>

</body>
</html>


Bleh. Inline style sheets. ALWAYS use external.

Use php. That can include HTML and allows you to have many features of PHP. Most basic sites will use HTML and CSS. So depends on the site you want.


Skipping straight to PHP can be very hard, and by the looks of it I think he wants something small, and basic to work on? CSS is very good for begginers and IMO you should learn that first. Just my opinion.
#6. Posted:
Kyle93
  • Winter 2021
Status: Offline
Joined: Jun 25, 201013Year Member
Posts: 4,078
Reputation Power: 2628
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
Status: Offline
Joined: Jun 25, 201013Year Member
Posts: 4,078
Reputation Power: 2628
Motto: https://www.thetechgame.com/Forums/t=7804 333/vote-for-tune-of-the-week-friday-nigh ts-lockdown-dj-sets.html
John_US wrote
Kyle93 wrote
John_US wrote Well there is on specific language to program a language in... You implement other languages into the website. Like with CSS into HTML. You style with CSS, but it is included in the the HTML code;

<html>
<head>
<style type="text/css">
body
{
background-color:#b0c4de;
}
</style>
</head>

<body>

<h1>Bold, big text here</h1>
<p>Text here</p>

</body>
</html>


Bleh. Inline style sheets. ALWAYS use external.

Use php. That can include HTML and allows you to have many features of PHP. Most basic sites will use HTML and CSS. So depends on the site you want.


Skipping straight to PHP can be very hard, and by the looks of it I think he wants something small, and basic to work on? CSS is very good for begginers and IMO you should learn that first. Just my opinion.


I agree, he should start on HTML and CSS to create a basic site. And a small amount of JaveScript. But, the point is PHP is where he needs to go. And inline css is bad.
#7. Posted:
99rock99
  • Resident Elite
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
Status: Offline
Joined: May 22, 201113Year Member
Posts: 235
Reputation Power: 9
I can already make basic sites with html and css. I have also started learning php.
#8. Posted:
-Jordan-
  • TTG Addict
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Status: Offline
Joined: Jul 12, 201013Year Member
Posts: 2,684
Reputation Power: 122
Before jumping into PHP because it's what most people suggest, look into your options. Most people just suggest PHP because that's what they were told and it's cheap. However other languages including Ruby and Python are in fact often more powerful. Heck, if you already know Java then why not look into using Clojure.
#9. Posted:
Goten
  • Resident Elite
Status: Offline
Joined: Jul 29, 201112Year Member
Posts: 227
Reputation Power: 8
Status: Offline
Joined: Jul 29, 201112Year Member
Posts: 227
Reputation Power: 8
Definitely always have javascript to bring things alive, just throw that into your html.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.