html – Page 3 – POFTUT

Php – Syntax Overview

[rps-include post=6522] Extension Php source or code files generally ends with .php but generally the extension is not important. Following extensions can be used too. php4 php5 php7 Php Tags Web based programming languages generally uses tags in order to surround related code. Php is web based programming language too and uses <?php … ?> tags. Second … Read more

Javascript Syntax and Basics

In this post we will start writing simple Javascript codes and run them on the browser. We will also look comments. Two Lines Of Code Our code is below. It is now two line and becoming more complex but not too much for our target. console.log(“Hello Poftut”); console.log(“By Poftut”); Here is two JavaScript line ended … Read more

Introduction to Javascript Programming Language

Javascript is scripting language very popular among developers. Javascript is the programming language of the web. In the recents years Javascript popularity is higher than before because it gained a lot of features with new browsers technologies. There browsers, mobile devices, desktop, game consoles use Javascript. History Javascript initially designed to interact with Html code … Read more

How To Get Query String From Url With Javascript?

Query string is part of URL. After question mark query string begins with simple key-value pairs. Popular JavaScript frameworks provide libraries to get query string with JavaScript. But how can we get it with pure JavaScript without using any JavaScript framework? getParameterByName() Function First we create a function to to get, parse the URL and … Read more