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
Foss : PHP and MySQL - Tamil
Outline: User Registration பகுதி 4 user இடம் இருந்து input ஆக பெறப்பட்ட தகவலை database table ல் query யின் மூலம் இணைத்தல். mysql_connect("hostname", "username", "password") - அங்கீகரிக..
Advanced

Foss : PHP and MySQL - Tamil
Outline: User Registration பகுதி 5 user இடம் இருந்து input ஆக பெறப்பட்ட password ஐ md5 encrypt form க்கு மாற்றுதல். md5("parameter")- parameter ஐ மாற்றமுடியாத logical code க்கு encrypt..
Advanced

Foss : PHP and MySQL - Tamil
Outline: User Registration பகுதி 6 Duplicate username ஐ தவிர்க்க கொடுக்கப்பட்ட username ஐ சரிபார்த்தல். mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - இது நமது database ல் குறிப்பிட்ட q..
Advanced

Foss : PHP and MySQL - Telugu
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 - Telugu
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 - Telugu
Outline: Switch Statement switch statement - use this statement to select one of many blocks of code to be executed
Basic

Foss : PHP and MySQL - Telugu
Outline: Arithmatic Operators Ex. +,-,*,/,%,++,--
Basic

Foss : PHP and MySQL - Telugu
Outline: Comparison Operators Ex. ==,!=,<>,>,<,>=,<=
Basic

Foss : PHP and MySQL - Telugu
Outline: Logical Operators Ex. && (AND),|| (OR),! (NOT)
Basic

Foss : PHP and MySQL - Telugu
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 - Telugu
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 - Telugu
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 - Telugu
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 - Telugu
Outline: Loops - Foreach Statement The foreach loop is used to loop through arrays. foreach ($array as $value) code to be executed;
Basic

Foss : PHP and MySQL - Telugu
Outline: Functions (Advanced) We can also pass parameters to functions during both the declaration and calling time. function functionName($param1,$param2); //during function call. funct..
Basic

16.GET Variable
Foss : PHP and MySQL - Telugu
Outline: GET Variable The built-in $_GET function is used to collect values from a form sent with method="get". Information sent from a form with the GET method is visible to everyone (it..
Basic

Foss : PHP and MySQL - Telugu
Outline: POST Variable The built-in $_POST function is used to collect values from a form sent with method="post". Information sent from a form with the POST method is invisible to othe..
Basic

Foss : PHP and MySQL - Telugu
Outline: Embedding PHP We can embed our PHP code anywhere in the webpage, by enclosing our script within the <?php...... //SCRIPT.......?>
Basic

Foss : PHP and MySQL - Telugu
Outline: Common Way to Display HTML We can also use the HTML Code within the PHP Script. Almost each of the HTML Tags can be used within a PHP Script.
Basic

20.MySQL Part 2
Foss : PHP and MySQL - Telugu
Outline: MySQL (Part 2) Connecting to the database and inserting dummy data into the database. mysql_connect("server_addr", "username", "password") - Connect to the Database Server with..
Intermediate
