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 - Bengali
Outline: User Registration প্রথম ভাগ একটি ফর্ম তৈরী করা যাতে ইউসার কোনো পৃষ্ঠায় মান ইনপুট করতে পারেন
Outline: User Registration দ্বিতীয় ভাগ ইনপুট করা string থেকে tag বাদ দেওয়া এবং পাসওয়ার্ড-কে md5 encryption দ্বারা পরিবর্তন করা strip_tags(strigs) এর ব্যবহার - string থেকে অপ্রয়োজনীয় ফাঁকা..
Outline: User Registration তৃতীয় ভাগ ইনপুট করা username এবং password -এর সঠিক দৈর্ঘের কিনা পরীক্ষা করা strlen("string") এর ব্যবহার - স্ট্রিং-এর অক্ষর সংখ্যা গণনা করে
Outline: User রেজিস্ট্রেশন চতুর্থ ভাগ ইউসার এর ইনপুট করা তথ্য কোয়েরি-এর মাধ্যমে ডেটাবেস-এ ঢোকানো mysql_connect("hostname", "username", "password") অনুমোদিত ইউসার এবং পাসওয়ার্ড দ্বারা ডেটা..
Outline: User রেজিস্ট্রেশন পঞ্চম ভাগ ইউসার দ্বারা ইনপুট করা পাসওয়ার্ড md5 encrypt ফর্ম-এ পরিবর্তন করা md5("parameter")- অপরিবর্তনীয় লজিক্যাল কোড-এ প্যারামিটার এনক্রিপ্ট করে
Outline: User রেজিস্ট্রেশন ষষ্ঠ ভাগ ইউসার-এর দেওয়া username পরীক্ষা করা যাতে username এর পুনরাবৃত্তি এড়ানো যায় mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') আমাদের ডেটাবেস-এ কোনো নির্দিষ্ট কো..
Foss : PHP and MySQL - English
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..
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 ..