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

Outline: User Password Change Part 1 We learn to obtain old existing password and new password from the user. start_session() - Hold information from previous pages to session page. $v..

Advanced

Foss : PHP and MySQL - English

Outline: User Password Change Part 2 Checking whether encrypted old password matches with the database password and new password is same as confirm password. md5("parameter")- encrypts ..

Advanced

Foss : PHP and MySQL - English

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

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

Advanced

Foss : PHP and MySQL - English

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

Outline: User Registration Part 3 Checking whether the username and password provided meet the required length sizes. Use of : strlen("string") - counts th character length of the strin..

Advanced

Foss : PHP and MySQL - English

Outline: User Registration Part 4 Inserting inputed information from the user into the database table through query. mysql_connect("hostname", "username", "password") - Connect to the D..

Advanced

Foss : PHP and MySQL - English

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

Outline: User Registration Part 6 Checking the username provided so that condition for duplicate username can be avoided. mysql_query('TYPE_HERE_YOUR_MYSQL_QUERY') - This is used to run..

Advanced

Foss : PHP and MySQL - Gujarati

Outline: XAMPP in Windows (વિન્ડોઝમાં XAMPP) વિન્ડોઝમાં XAMPP સંસ્થાપિત કરવું XAMPP એક સંચયી પેકેજ છે જે વિન્ડોઝ માટે ઉપલબ્ધ Apache, PHP and MySQL પેકેજીસ ઉપલબ્ધ છે. આ ટ્યુટોરીયલમાં X..

Basic

Foss : PHP and MySQL - Gujarati

Outline: XAMPP in Linux (લીનક્સમાં XAMPP) (XAMPP in Linux php) XAMPP એક સંચયી પેકેજ છે જે લીનક્સમાં ઉપલબ્ધ Apache, PHP and MySQL પેકેક્જીસ રાખે છે. આ ટ્યુટોરીયલમાં XAMPP સંસ્થાપિત કરવામ..

Basic

Foss : PHP and MySQL - Gujarati

Outline: Echo Function (એકો ફંક્શન) એકો ફંક્શન એક અથવા વધારે સ્ટ્રીંગ આઉટપુટ કરે છે. Syntax: echo(strings); Ex. echo "Hello World!";

Basic

Foss : PHP and MySQL - Gujarati

Outline: Variables in PHP (PHP માં વેરીએલ્સ) વેરીએબલ વેલ્યુ જેમકે ટેક્સ્ટ સ્ટ્રીંગ,નંબરસ અથવા એરેજને સંચિતમાં પ્રયોગ હોય છે. જયારે એક વેરીએબલ ડીકલેર થાય છે તો આ આપની સ્ક્રીપ્ટમાં વારમવાર ..

Basic

Foss : PHP and MySQL - Gujarati

Outline: If Statement (ઇફ સ્ટેટમેંટ) if statement - અમુક કોડ એક્ઝીક્યુટ કરવા માટે આ સ્ટેટમેંટનો ઉપયોગ કરો જો ફક્ત એક વિસ્તૃત કન્ડીશન ટ્રૂ હોય. if...else statement - આ સ્ટેટમેંટ નો ઉપયોગ..

Basic

Foss : PHP and MySQL - Gujarati

Outline: Switch Statement (સ્વીચ સ્ટેટમેંટ) switch statement (સ્વીચ સ્ટેટમેંટ) - કોડના અનેક બ્લોકસમાં એક ને પસંદ કરીને એક્ઝીક્યુટ કવા માટે આ સ્ટેટમેંટ નો ઉપયોગ કરો

Basic

Foss : PHP and MySQL - Gujarati

Outline: Arithmatic Operators (અરીથમેટીક ઓપરેટર્સ ) Ex. +,-,*,/,%,++,--

Basic

Foss : PHP and MySQL - Gujarati

Outline: Comparison Operators (ક્મ્પેરીજ્ન ઓપરેટર) Ex. ==,!=,<>,>,<,>=,<=

Basic

Foss : PHP and MySQL - Gujarati

Outline: Logical Operators (લોજીકલ ઓપરેટર ) Ex. && (AND),|| (OR),! (NOT)

Basic

Foss : PHP and MySQL - Gujarati

Outline: એરેસ એરે ઘણી બધી વેલ્યુને સિંગલ એરેમાં સંગ્રહ કરે છે. ન્યુમેરીક એરે - ન્યુમેરીક ઇન્ડેક્સ સાથે એરે. અસોસીએટીવ એરે - એરે જ્યાં ID કી વેલ્યુ સાથે આપી છે . ઉદાહરણ. ન્યુમેરીક એ..

Basic

Foss : PHP and MySQL - Gujarati

Outline: મલ્ટી ડાઈમેન્શનલ એરે મલ્ટી ડાઈમેન્શનલ એરેમાં,મેન એરે માના પ્રત્યેક એલિમેન્ટ એરે હોઈ શકે છે.અને સબ એરેમાં પ્રત્યેક એલિમેન્ટ એરે હોય છે,અને તેમજ.

Basic