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

Outline: User Login Part 2 retrieves information about inputed username and checks whether given password matches with the password in database. mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY'..

Advanced

Foss : PHP and MySQL - Telugu

Outline: User Password Change Part 3 updating the new password in database. mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - It is used to run specific queries on our database. Here it updat..

Advanced

Foss : PHP and MySQL - Telugu

Outline: User Registration Part 1 Creating a form which allows user to input values in page

Advanced

Foss : PHP and MySQL - Telugu

Outline: User Registration Part 2 Striping tags of inputed strings and converting password into md5 encryption. Use of : strip_tags(strigs) - cuts down unnecessary spaces,html tags and ..

Advanced

Foss : PHP and MySQL - Telugu

Outline: User Password Change Part 3 updating the new password in database. mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - It is used to run specific queries on our database. Here it updat..

Advanced

Foss : PHP and MySQL - Telugu

Outline: User Registration Part 5 Converting the password inputed from user to md5 encrypt form. md5("parameter")- encrypts parameter into irreversible logical code.

Advanced

Foss : PHP and MySQL - Urdu

Outline: XAMPP ونڈوز میں انسٹال کرنا XAMPP ونڈوز میں ایک مجموعی پیکیج ہے جس میں ونڈوز کے لئے دستیاب اپاچی، پی ایچ پی اور XAMPP ایس کیو ایل پیکجز موجود ہیں. ، نصب کیا جائے ..

Basic

Foss : PHP and MySQL - Urdu

Outline: XAMPP لینکس میں انسٹال کرنا XAMPP لینکس میں ایک مجموعی پیکیج ہے جو لینکس میں دستیاب اپاچی، پی ایچ پی اور ایس کیو ایلXAMPP پیکجوں کو رکھتا ہے. نصب کیا جائے گا XA..

Basic

Foss : PHP and MySQL - Urdu

Outline: فنکشن echo فنکشن ایک یا زیادہ سٹرنگس آوٹ پُٹ کرتا ہے. echo echo(strings); :سنٹیکس echo "Hello World!"; مثال کے طور پر

Basic

Foss : PHP and MySQL - Urdu

Outline: میں ویریبلس PHP ویریبلس ٹیکسٹ سٹرنگس، نمبروں یا اریزکے ویلیوزکو اسٹور یعنی جمع کرنے کے لئے استعمال کیا جاتا ہے. جب ایک ویریبل ڈکلئیر کیا جاتا ہے تو یہ آپ کی سکرپٹ میں با..

Basic

Foss : PHP and MySQL - Urdu

Outline: اسٹیٹمینٹ if اسٹیٹمینٹ-اگر کوئی مخصوص کنڈشن ٹرو ہو تو کسی کوڈ کو ایکزکیوٹ کرکے اس کا استعمالif کریں اسٹیٹمینٹ- اگر کوئی کنڈشن ٹرو ہو تو ایک کوڈ ایکزکیوٹ کریں بصورت دیگرif..

Basic

Foss : PHP and MySQL - Urdu

Outline: اسٹیٹمینٹ Switch - اسٹیٹمینٹ Switch - کوڈ کے بہت سے بلاکس میں سے ایک کو منتخب کرکے اس ..

Basic

Foss : PHP and MySQL - Urdu

Outline: ارتھمیٹک آپریٹرس +,-,*,/,%,++,-- -:مثال کے طور پر

Basic

Foss : PHP and MySQL - Urdu

Outline: کمپیرزن آپریٹرز ==,!=,<>,>,<,>=,<= : مثلاََ

Basic

Foss : PHP and MySQL - Urdu

Outline: لوجکل آپریٹرز && (AND),|| (OR),! (NOT) : مثلاََ

Basic

Foss : PHP and MySQL - Urdu

Outline: ایک ارے ایک ویریبل کئی ویلیوز رکھتا ہے نیومیرک انڈیکس والا ارے Numeric array ایک ارے جس میں ہر ایک اآئی ڈِ ایک ویلیو سے منسلک ہوتا ہے Associative array Numeric Array: $fruits=a..

Basic

Foss : PHP and MySQL - Urdu

Outline: ملٹی ڈائمینشنل ارے میں، بنیادی ارے میں موجود ہر ایلمینٹ ارے ہو سکتا ہے۔ اور سب-ارے میں ہر ایلمینٹ ارے ہو سکتا ہے اور ایسے ہی اور بھی

Basic

Foss : PHP and MySQL - Urdu

Outline: Loops - While Statement تب تک کوڈ کے بلاک کو ایکزکیوٹ کرتا ہے جب تک کنڈشن ٹرو ہو while loop while (condition) { code to be executed; }

Basic

Foss : PHP and MySQL - Urdu

Outline: Loops - For Statement کا استعمال تب ہوتا ہے جب آپ پہلے سے جانتے ہوں کہ اسکرپٹ کو کتنیfor loop بار رن ہونا چاہئے for (init; condition; increment) { code to be execu..

Basic

Foss : PHP and MySQL - Urdu

Outline: Loops - Foreach Statement کا استعمال اریز میں لوپ کرنے کے کام آتا ہے foreach loop foreach ($array as $value) { code to be executed; }

Basic