IF statement

By now you should have figured that variables are just some “places” in which we store information, but what do we do with that information? I mean we need to do something with it and not just output it to the screen with the help of the browser and one of the most important thing we need to do with them is deciding what to do next if a condition is met like for example if x = 10, do something and that is a thing called conditional logic and by

Continue reading

Variables in php

Hello again, today i decided to write some basic concepts about php as a programming language and the first thing i want to talk about are the variables.

First thing that you should know is that when you declare a variable you need to put the dollar ( $ ) sign before your variable ex: $x;

Continue reading