Search Tutorials

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


About 9587 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : PHP and MySQL - Oriya

Outline: Loops - While Statement While ଲୂପ୍ ଗୋଟିଏ କୋଡର ବ୍ଲକକୁ ନିଷ୍ପାଦନ କରିବ ଯେତେବେଳେ ଗୋଟିଏ କଣ୍ଡିଶନ୍ true ହେବ while (condition) { code to be executed; }

Basic

Foss : PHP and MySQL - Oriya

Outline: Loops - Do-While Statement do...while ଷ୍ଟେଟମେଣ୍ଟ ସର୍ବଦା କୋଡର ବ୍ଲକକୁ କେବଳ ଥରେ ମାତ୍ର ନିଷ୍ପାଦନ କରିବ, ତା’ପରେ ଏହା କଣ୍ଡିଶନକୁ ଯାଞ୍ଚ କରିବ ଏବଂ କଣ୍ଡିଶନ୍ true ହେବା ସ୍ଥଳେ ଲୂପର ପୁନରାବୃତ୍ତି କ..

Basic

Foss : PHP and MySQL - Oriya

Outline: Loops - For Statement ସ୍କ୍ରିପ୍ଟ କେତେ ଥର ରନ୍ କରିବ ଯାହା ଆପଣ ଆଗରୁ ଜାଣିଥିବେ, ସେଥିପାଇଁ for ଲୂପ୍ ବ୍ୟବହାର ହୋଇଥାଏ ସିଣ୍ଟାକ୍ସ: for (init; condition; increment) { code to ..

Basic

Foss : PHP and MySQL - Oriya

Outline: Loops - Foreach Statement ଆରେଗୁଡିକ ମଧ୍ୟରେ ଲୂପ୍ କରିବା ପାଇଁ foreach ଲୂପକୁ ବ୍ୟବହାର କରାଯାଇଥାଏ foreach ($array as $value) { code to be executed; }

Basic

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..

Basic

Foss : PHP and MySQL - Punjabi

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..

Basic

Foss : PHP and MySQL - Punjabi

Outline: Echo Function The echo() function outputs one or more strings. Syntax: echo(strings); Ex. echo "Hello World!";

Basic

Foss : PHP and MySQL - Punjabi

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..

Basic

Foss : PHP and MySQL - Punjabi

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..

Basic

Foss : PHP and MySQL - Punjabi

Outline: Switch Statement switch statement - use this statement to select one of many blocks of code to be executed

Basic

Foss : PHP and MySQL - Punjabi

Outline: Arithmatic Operators Ex. +,-,*,/,%,++,--

Basic

Foss : PHP and MySQL - Punjabi

Outline: Comparison Operators Ex. ==,!=,<>,>,<,>=,<=

Basic

Foss : PHP and MySQL - Punjabi

Outline: Logical Operators Ex. && (AND),|| (OR),! (NOT)

Basic

Foss : PHP and MySQL - Punjabi

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..

Basic

Foss : PHP and MySQL - Punjabi

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.

Basic

Foss : PHP and MySQL - Punjabi

Outline: Loops - While Statement The while loop executes a block of code while a condition is true. while (condition) code to be executed;

Basic

Foss : PHP and MySQL - Punjabi

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..

Basic

Foss : PHP and MySQL - Punjabi

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;

Basic

Foss : PHP and MySQL - Punjabi

Outline: Loops ( ਲੂਪਸ ) - Foreach Statement foreach ( ਫਾਰਇਚ ) ਲੂਪ, ਐਰੇ ਦੇ ਮਾਧਿਅਮ ਰਾਹੀਂ ਲੂਪ ਕਰਨ ਲਈ ਪ੍ਰਯੋਗ ਕੀਤੀ ਜਾਂਦੀ ਹੈ । ਫਾਰਇਚ ( $ array as $ value ) ਕੋਡ ਜਿਸ ਨੂੰ ਚਲਾਇਆ..

Basic

Foss : PHP and MySQL - Punjabi

Outline: ਫੰਕਸ਼ੰਸ ( ਬੇਸਿਕ ) ਜਦੋਂ ਪੇਜ ਲੋਡ ਹੁੰਦਾ ਹੈ ਤਾਂ ਸਕਰਿਪਟ ਨੂੰ ਚਲਾਉਣ ਲਈ ਤੁਸੀ ਇਸਨੂੰ ਫੰਕਸ਼ਨ ਵਿੱਚ ਰੱਖ ਸੱਕਦੇ ਹੋ । ਫੰਕਸ਼ਨ , ਫੰਕਸ਼ਨ ਨੂੰ ਕਾਲ ਕਰਕੇ ਚਲਾਇਆ ਜਾਵੇਗਾ । ਤੁਸੀ ਪੇਜ ਵਿੱਚ ਕਿਤੋਂ ਵ..

Basic