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: மின்னஞ்சல் அனுப்புதல் (பகுதி 2) User ஆல் பெயர் மற்றும் செய்தி enter செய்யப்பட்டதா என சரிபார்ப்பது Strlen () function ன் மூலம் string ன் நீளத்தை சரிபார்த்தல் mail() function ..
Outline: மின்னஞ்சல் அனுப்புதல் (பகுதி 3) "Sendmail from not set in php dot ini" எனும் பிழையை சரிசெய்தல் "From:" header எனும் மின்னஞ்சலை உருவாக்குதல் மின்னஞ்சலை அனுப்ப local அல்லது exte..
Outline: ஒரு directory ல் இருந்து Image களைக் காட்டுதல் ஒரு directory handle ஐ திறப்பதற்கு opendir () ஐ பயன்படுத்துதல் readdir () ஐ பயன்படுத்தி ஏற்கனவே திறக்கப்பட்ட ஒரு directory ஐ r..
Outline: User Login பகுதி 1 User இடம் இருந்து ஒரு form ல் தகவலை சேகரித்தல் மற்றும் அங்கீகரிக்கப்பட்ட database ஐ இணைத்தல். mysql_connect("hostname", "username", "password") - அங்கீகரிக்க..
Outline: User Login பகுதி 2 கொடுக்கப்பட்ட username தகவலை பெறுதல் மற்றும் கொடுக்கப்பட்டுள்ள password database ல் உள்ள password உடன் பொருந்துகிறதா என்பதை சரிபார்த்தல் mysql_query('TYPE_..
Outline: User Login பகுதி 3 Value ஐ hold செய்ய session ஐ உருவாக்குதல் மற்றும் அந்த value ஐ destroying session மூலம் அழித்தல். start_session() - session உள்ள வரை ஒரு பக்கத்தில் இருந்து ..
Outline: User ன் Password ஐ மாற்றுதல் பகுதி 1 User இடம் இருந்து பழைய மற்றும் புதிய password ஐ பெற கற்றுக்கொள்கிறோம். start_session() - முந்தைய பக்கத்தில் இருந்து session பக்கத்திற்கு..
Outline: User ன் Password ஐ மாற்றுதல் பகுதி 2 encrypt செய்யப்பட்ட பழைய password, database password உடன் பொருந்துகிறதா மற்றும் புதிய password உறுதி செய்யப்பட்ட password உடன் பொருந்துகிறதா..
Outline: User ன் Password ஐ மாற்றுதல் பகுதி 3 Database ல் புதிய password ஐ update செய்தல். mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - இது நமது database ல் குறிப்பிட்ட query களை இயக்க ..
Outline: User Registration பகுதி 1 பக்கத்தில் user க்கு மதிப்புகளை input செய்வதற்கான form ஐ உருவாக்குதல்
Outline: User Registration பகுதி 2 input செய்யப்பட்ட string களின் tag களை strip செய்து md5 encryption ல் password ஐ மாற்றுதல் strip_tags(strigs) ன் பயன்பாடு -string ல் இருந்து தேவையற்ற..
Outline: User Registration பகுதி 3 கொடுப்பட்ட username மற்றும் password, தேவையான அளவுகளில் இருக்கிறதா என்பதை சரிபார்த்தல். strlen("string") ன் பயன் - string ல் character ன் நீளத்தை ..
Outline: User Registration பகுதி 4 user இடம் இருந்து input ஆக பெறப்பட்ட தகவலை database table ல் query யின் மூலம் இணைத்தல். mysql_connect("hostname", "username", "password") - அங்கீகரிக..
Outline: User Registration பகுதி 5 user இடம் இருந்து input ஆக பெறப்பட்ட password ஐ md5 encrypt form க்கு மாற்றுதல். md5("parameter")- parameter ஐ மாற்றமுடியாத logical code க்கு encrypt..
Outline: User Registration பகுதி 6 Duplicate username ஐ தவிர்க்க கொடுக்கப்பட்ட username ஐ சரிபார்த்தல். mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - இது நமது database ல் குறிப்பிட்ட q..
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..
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. ==,!=,<>,>,<,>=,<=