Web programming?

Tanckom

Power Member
Joined
May 4, 2014
Messages
592
Reaction score
184
Hello guys, so my programming languages are currently Java, Batch, iMacros and several more with VERY basic skills.

I wanted to ask you, how people create online programms, for example you input a website and the website itself makes behind the "curtain" (not visible for the user) stuff like creating backlinks, or checking for PR or such stuff?

Would be interested to start with that :)
 
Depends of what you want to do, if the task cannot be completed in a few second for any reason, then you'll have to queue the task and use a daemon, that will execute each task one by one (of course you can multi thread)
 
My top favorites:
For the stuff the user sees on a website: Javascript/jQuery
For the stuff they do not see on a website: PHP, Perl, Python
For automating websites from a computer: C#, Perl, Python, PHP
 
My top favorites:
For the stuff the user sees on a website: Javascript/jQuery
For the stuff they do not see on a website: PHP, Perl, Python
For automating websites from a computer: C#, Perl, Python, PHP

And how do i add Javascript (In my case i work with Netbeans - .jar files) to a website?
 
Java and Javascript are two different things.
Javascript simply gets inserted between HTML script tags.

I'm too new to post links but if you google: w3schools javascript
You will find everything you need on the w3schools website.
 
Back
Top