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

Outline: User Login প্রথম ভাগ user থেকে তথ্য ফর্ম-এ নেওয়া এবং authorized database-এ সংযোগ করা । mysql_connect("hostname", "username", "password") - authorized user এবং password দ্বারা ..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Login দ্বিতীয় ভাগ । ইনপুট করা username -এ তথ্য বার করে এবং পরীক্ষা করে লেখা পাসওয়ার্ড আর ডেটাবেস-এ থাকা পাসওয়ার্ড এক কিনা । mysql_query('TYPE_HERE_YOUR_MYSQL..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Login -এর তৃতীয় ভাগ । মান ধরে থাকতে সেশন তৈরী এবং সেই মান ধ্বংশ করে সেশন ধ্বংশ করা । start_session() -এটি সেশন শুরু করে সেশন শেষ না হওয়া পর্যন্ত এক পৃষ্ঠা থেকে ..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Password পরিবর্তন প্রথম ভাগ আমরা শিখব কিভাবে ইউসার -এর থেকে আগের পাসওয়ার্ড এবং নতুন পাসওয়ার্ড পাওয়া যায় start_session() - পূর্ববতী পৃষ্ঠা থেকে সেশন পৃষ্ঠায় তথ্য ধরে রাখে $v..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Password পরিবর্তন দ্বিতীয় ভাগ এনক্রিপ্ট করা আগের পাসওয়ার্ড ও ডেটাবেস-এ থাকা পাসওয়ার্ড এক কিনা এবং নতুন পাসওয়ার্ড, confirm পাসওয়ার্ড-এর সাথে মিলছে কিনা পরীক্ষা করা md5("param..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Password পরিবর্তন তৃতীয় ভাগ ডেটাবেস-এ নতুন পাসওয়ার্ড আপডেট করা mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') এটি আমাদের ডেটাবেস-এ নির্দিষ্ট কোয়েরি চালাতে ব্যবহৃত হয় এখানে এটি ড..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Registration প্রথম ভাগ একটি ফর্ম তৈরী করা যাতে ইউসার কোনো পৃষ্ঠায় মান ইনপুট করতে পারেন

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Registration দ্বিতীয় ভাগ ইনপুট করা string থেকে tag বাদ দেওয়া এবং পাসওয়ার্ড-কে md5 encryption দ্বারা পরিবর্তন করা strip_tags(strigs) এর ব্যবহার - string থেকে অপ্রয়োজনীয় ফাঁকা..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User Registration তৃতীয় ভাগ ইনপুট করা username এবং password -এর সঠিক দৈর্ঘের কিনা পরীক্ষা করা strlen("string") এর ব্যবহার - স্ট্রিং-এর অক্ষর সংখ্যা গণনা করে

Advanced

Foss : PHP and MySQL - Bengali

Outline: User রেজিস্ট্রেশন চতুর্থ ভাগ ইউসার এর ইনপুট করা তথ্য কোয়েরি-এর মাধ্যমে ডেটাবেস-এ ঢোকানো mysql_connect("hostname", "username", "password") অনুমোদিত ইউসার এবং পাসওয়ার্ড দ্বারা ডেটা..

Advanced

Foss : PHP and MySQL - Bengali

Outline: User রেজিস্ট্রেশন পঞ্চম ভাগ ইউসার দ্বারা ইনপুট করা পাসওয়ার্ড md5 encrypt ফর্ম-এ পরিবর্তন করা md5("parameter")- অপরিবর্তনীয় লজিক্যাল কোড-এ প্যারামিটার এনক্রিপ্ট করে

Advanced

Foss : PHP and MySQL - Bengali

Outline: User রেজিস্ট্রেশন ষষ্ঠ ভাগ ইউসার-এর দেওয়া username পরীক্ষা করা যাতে username এর পুনরাবৃত্তি এড়ানো যায় mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') আমাদের ডেটাবেস-এ কোনো নির্দিষ্ট কো..

Advanced

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

Basic

Foss : PHP and MySQL - English

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

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

Basic

Foss : PHP and MySQL - English

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

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

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

Basic

Foss : PHP and MySQL - English

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

Basic

Foss : PHP and MySQL - English

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

Basic