Search Tutorials
The Tutorials in this series are created in PERL 5.14.2 on Ubuntu 12.04. Perl (Practical Extraction and Reporting Language) is widely used open-source language. Read more
Foss : PERL - Punjabi
Outline: Including Files or modules in Perl program ਅਸੀ ਹੇਠਾਂ ਦਿੱਤੇ ਤਰੀਕਿਆਂ ਦਾ ਪ੍ਰਯੋਗ ਕਰਕੇ ਪਰਲ ਮਾਡਿਊਲਸ ਜਾਂ ਫਾਈਲਸ ਨੂੰ ਸ਼ਾਮਿਲ ਕਰ ਸਕਦੇ ਹਾਂ: 1. do: ਇਹ ਸੋਰਸ ਕੋਡ ਨੂੰ ਹੋਰ ਫਾਈਲਸ ਵਿਚੋਂ ਮੌਜੂਦਾ ਸ..
Intermediate

Foss : PERL - Punjabi
Outline: Sample Perl program ਅਸੀਂ ਹੁਣ ਤੱਕ ਕਵਰ ਕੀਤੇ ਹੋਏ ਮੁੱਖ ਵਿਸ਼ਿਆਂ ਨੂੰ ਸੈਂਪਲ ਪਰਲ ਪ੍ਰੋਗਰਾਮ ਵਿੱਚ ਸ਼ਾਮਿਲ ਕੀਤਾ ਹੈ। ਇਹ ਪ੍ਰੋਗਰਾਮ ਇੱਕ ਖੇਤਰ ਦੀਆਂ ਵੱਖ-ਵੱਖ ਵੈਧਰ ਫੋਰਕਾਸਟ ਰਿਪੋਰਟਸ ਦਾ ਆਊਟਪੁੱਟ ਦੇਵੇਗਾ। ..
Intermediate

Foss : PERL - Punjabi
Outline: Perl Module Library Comprehensive Perl Archive Network (CPAN) ਮਾਡਿਊਲਸ ਦੀ ਲਾਇਬ੍ਰੇਰੀ ਹੁੰਦਾ ਹੈ । 1. ਯੂਜ਼ਰ CPAN ਵਿੱਚ ਉਪਲੱਬਧ ਮੌਜੂਦਾ ਮਾਡਿਊਲਸ ਦੀ ਵਰਤੋਂ ਕਰ ਸਕਦਾ ਹੈ । 2. ਯੂਜ਼ਰ ਦੁਆ..
Intermediate

Foss : PERL - Punjabi
Outline: Downloading CPAN module 1. Linux OS: ਡਾਊਂਨਲੋਡ ਦੇ ਅਨੇਕਾਂ ਤਰੀਕੇ ਹਨ । ਟਾਈਪ ਕਰੋ cpan ਅਤੇ ਐਂਟਰ ਦਬਾਓ । ਇਹ ਸਾਨੂੰ cpan ਪ੍ਰੌਮਪਟ ਦਿੰਦਾ ਹੈ । ਟਾਈਪ ਕਰੋ install ਮਾਡਿਊਲ ਨੇਮ 2. Windows O..
Intermediate

Foss : PERL - Punjabi
Outline: Perl and HTML 1. HTML ਪੇਜ਼ਸ ਬਣਾਉਣਾ, Perl CGI ਮਾਡਿਊਲ ਦਿੰਦਾ ਹੈ ਜੋ ਲੋੜੀਂਦਾ HTML ਟੈਗਸ ਦੇ ਨਾਲ CGI ਸਕਰਿਪਟ ਬਣਾਉਂਦਾ ਹੈ । 2. ਅਨੇਕਾਂ ਮੈਥਡਸ ਹਨ ਜੋ ਹੈਡਰ ਜੋੜਨ ਲਈ ਮਾਡਿਊਲਸ ਦਿੰਦੇ ਹਨ, ਪੇਜ਼ ‘ਤੇ ..
Intermediate

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

10.If Statement
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

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