Skip to main content

Beginning with PHP development with your first php code.

PHP is a server scripting language that is mainly suitable for web page or web application development. PHP pages can also have HTML, CSS and Javascript  in it. By default PHP can be write in a file with .php extension like 'filename.php'.

System Requirements  for PHP Development:

(On Window OS)

The all in one solution for PHP development on window machine are : WAMP and XAMPP server stack that have web server (Apache) , PHP and database server (Mysql) in it.

You can download WAMP server from here or the XAMPP server from here.

One of the best thing with these server is that they are open source and free to use.

Tools you can use:

Notepad++ : This is a text editor that can be used to write your PHP code.

Download the Notepad++ from here.


Step to write you first PHP code:
  • Install the WAMP/XAMPP server.
  • Create a new file in Notepad++ (Or any text editor you have)
  • Write the below code in the file.
Code of index.php file
  • Save the file as "index.php" in the C:\wamp\www\ folder in WAMP server or C:\xampp\htdocs\ folder in XAMPP server. 
  • Go to web browser like Mozilla or Internet Explorer.
  • Write http://localhost/index.php in the address bar.
That done  you will see the following output.
Output of index.php file

Enjoy your first php code. Happy coding :)

Comments

Popular posts from this blog

The Great Architectures of Bijawar, Chhatarpur, M.P.

Bijawar, Temple Janki Niwash Bijawar, Temple Janki Niwash   Maharaja Palace of Bijawar - A very royal palace of the Great Maharaja Ji of Bijawar. The palace has a great eye caching architecture. It stands tall with its mirror image on a big Talab in front of it. The palace is become very old and loosing its age at a rapid pace. Unfortunately its to late to restore the Bijawar palace infrastructure but one should create Bijawar palace replica or model to preserve its beauty and architecture. This photo of the palace is the first photo taken and publish on the web. That time there was no good cameras available but as said Old is Gold.

Shanti Mantras

ॐ पूर्णमदः पूर्णमिदम् पूर्णात् पूर्णमुदच्यते | पूर्णस्य पूर्णमादाय पूर्णमेवावशिष्यते || ॐ शान्तिः, शान्तिः, शान्तिः ||

Call async function in loop for array and update the exiting array Javascript and Node Js

Here is a good example of the code to call async function in loop for element of an array and update the exiting array. In this example I have used the Array.prototype.entries() function to get the index and value of each array item of a simple array. Array.prototype.entries() method helps to iterate an array with index and element. function timeout(ms) { return new Promise(resolve => setTimeout(resolve, ms)); } async function resolveAfter2Seconds(num) { await timeout(2000); return num; } async function main() { let arr = ["Saab", "Volvo", "BMW"]; for (let [index, val] of arr.entries()) { console.log(index, val); console.log(await resolveAfter2Seconds(val)); } } main();