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 9611 results found.
  1. Instruction Sheet
  2. Installation Sheet
  3. Brochures

Foss : PHP and MySQL - Telugu

Outline: Sessions A PHP session variable is used to store information about, or change settings for a user session. Session variables hold information about one single user, and are ava..

Advanced

Foss : PHP and MySQL - Telugu

Outline: MD5 Encryption Calculates the MD5 hash of str using the RSA Data Security, Inc.'s MD5 Message-Digest Algorithm, and returns that hash (Its a one way encrypting technique). Synt..

Advanced

Foss : PHP and MySQL - Telugu

Outline: Sending Email (Part 1) Create HTML form for getting email subject and message from the user Using the mail() function to send email

Advanced

Foss : PHP and MySQL - Telugu

Outline: Sending Email (Part 3) Fix the "Sendmail from not set in php dot ini" error Create the mail "From:" header Using a local or external mail server to send email Using the ini_s..

Advanced

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