The Tutorials in this series are created in XAMPP 5.5.19 on Ubuntu 14.04. PHP: Hypertext Preprocessor" is a widely-used Open Source general-purpose scripting language that is especially suited for Web development and can be embedded into HTML. Read more
Foss : PHP and MySQL - Oriya
Outline: Loops - Do-While Statement do...while ଷ୍ଟେଟମେଣ୍ଟ ସର୍ବଦା କୋଡର ବ୍ଲକକୁ କେବଳ ଥରେ ମାତ୍ର ନିଷ୍ପାଦନ କରିବ, ତା’ପରେ ଏହା କଣ୍ଡିଶନକୁ ଯାଞ୍ଚ କରିବ ଏବଂ କଣ୍ଡିଶନ୍ true ହେବା ସ୍ଥଳେ ଲୂପର ପୁନରାବୃତ୍ତି କ..
Outline: Loops - For Statement ସ୍କ୍ରିପ୍ଟ କେତେ ଥର ରନ୍ କରିବ ଯାହା ଆପଣ ଆଗରୁ ଜାଣିଥିବେ, ସେଥିପାଇଁ for ଲୂପ୍ ବ୍ୟବହାର ହୋଇଥାଏ ସିଣ୍ଟାକ୍ସ: for (init; condition; increment) { code to ..
Outline: Loops - Foreach Statement ଆରେଗୁଡିକ ମଧ୍ୟରେ ଲୂପ୍ କରିବା ପାଇଁ foreach ଲୂପକୁ ବ୍ୟବହାର କରାଯାଇଥାଏ foreach ($array as $value) { code to be executed; }
Foss : PHP and MySQL - Punjabi
Outline: XAMPP in Windows Installing XAMPP in Windows XAMPP is a cumulative package consisting of Apache, PHP and MySQL Packages is available for Windows In this tutorial the XAMPP wil..
Outline: XAMPP in Linux Installing XAMPP in Linux XAMPP is a cumulative package consisting of Apache, PHP and MySQL Packages is available for Linux In this tutorial the XAMPP will be i..
Outline: Echo Function The echo() function outputs one or more strings. Syntax: echo(strings); Ex. echo "Hello World!";
Outline: Variables in PHP Variables are used for storing values, like text strings, numbers or arrays. When a variable is declared, it can be used over and over again in your script. A..
Outline: If Statement if statement - use this statement to execute some code only if a specified condition is true. if...else statement - use this statement to execute some code if a co..
Outline: Switch Statement switch statement - use this statement to select one of many blocks of code to be executed
Outline: Arithmatic Operators Ex. +,-,*,/,%,++,--
Outline: Comparison Operators Ex. ==,!=,<>,>,<,>=,<=
Outline: Logical Operators Ex. && (AND),|| (OR),! (NOT)
Outline: Arrays An array stores multiple values in one single variable. Numeric array - An array with a numeric index. Associative array - An array where each ID key is associated with a..
Outline: Multi-Dimensional Arrays In a multidimensional array, each element in the main array can also be an array. And each element in the sub-array can be an array, and so on.
Outline: Loops - While Statement The while loop executes a block of code while a condition is true. while (condition) code to be executed;
Outline: Loops - Do-While Statement The do...while statement will always execute the block of code once, it will then check the condition, and repeat the loop while the condition is true..
Outline: Loops - For Statement The for loop is used when you know in advance how many times the script should run. Syntax: for (init; condition; increment) code to be executed;
Outline: Loops ( ਲੂਪਸ ) - Foreach Statement foreach ( ਫਾਰਇਚ ) ਲੂਪ, ਐਰੇ ਦੇ ਮਾਧਿਅਮ ਰਾਹੀਂ ਲੂਪ ਕਰਨ ਲਈ ਪ੍ਰਯੋਗ ਕੀਤੀ ਜਾਂਦੀ ਹੈ । ਫਾਰਇਚ ( $ array as $ value ) ਕੋਡ ਜਿਸ ਨੂੰ ਚਲਾਇਆ..
Outline: ਫੰਕਸ਼ੰਸ ( ਬੇਸਿਕ ) ਜਦੋਂ ਪੇਜ ਲੋਡ ਹੁੰਦਾ ਹੈ ਤਾਂ ਸਕਰਿਪਟ ਨੂੰ ਚਲਾਉਣ ਲਈ ਤੁਸੀ ਇਸਨੂੰ ਫੰਕਸ਼ਨ ਵਿੱਚ ਰੱਖ ਸੱਕਦੇ ਹੋ । ਫੰਕਸ਼ਨ , ਫੰਕਸ਼ਨ ਨੂੰ ਕਾਲ ਕਰਕੇ ਚਲਾਇਆ ਜਾਵੇਗਾ । ਤੁਸੀ ਪੇਜ ਵਿੱਚ ਕਿਤੋਂ ਵ..
Outline: ਫੰਕਸ਼ੰਸ ( ਏਡਵਾਂਸਡ ) ਅਸੀ ਘੋਸ਼ਣਾ ਅਤੇ ਕਾਲਿੰਗ ਦੋਨਾਂ ਦੇ ਦੌਰਾਨ ਵੀ ਫੰਕਸ਼ੰਸ ਪੈਰਾਮੀਟਰਸ ਕਾਲ ਕਰ ਸੱਕਦੇ ਹਾਂ । ਫੰਕਸ਼ਨ ਫੰਕਸ਼ਨਨੇਮ ( $ param1 , $ param2 ) ; / / ਫੰਕਸ਼ਨ ਕਾਲ ਦੇ ਦੌਰਾਨ ਫੰਕਸ਼..