Half-Day Online Pilot Workshop on AutoDock4 on 9 August 2024, 2:00 pm to 5.30 pm. Click here to register.

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

Foss : PHP and MySQL - English

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

Outline: User Login Part 3 Creating session for holding value and destroying that value by destroying session. start_session() - Starts session to hold information from one pages to oth..

Advanced

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 : Python 3.4.3 - English

Outline: >Use Python 3.5.2 >Use Ipython version 5.1.0 >IPython is an enhanced interactive Python interpreter. >Invoke the IPython interpreter >Quit the IPython interpreter >Navigate th..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Start IPython with pylab. ImportError if matplotlib is not installed clf() function Use the linspace function to create equally spac..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Modify the attributes of a plot Pass additional keyword arguments to plot command Add title to a plot using 'title' command. Incor..

Basic

Foss : Python 3.4.3 - English

Outline: Use Python 3.4.3 Use Ipython version 5.1.0 Save plots using the savefig() function. Save the plots in different formats like pdf ps png svg eps

Basic

Foss : Python 3.4.3 - English

Outline: -Use Python 3.4.3 - Use IPython 5.1.0 - Draw multiple plots which are overlaid. - Operations on individual plots. - Use the figure command. - Distinguish between multiple over..

Basic

Foss : Python 3.4.3 - English

Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Creating subplots * Switching between subplots. * Subplot command * Passing arguments to subplot command. * First argument is the num..

Basic

Foss : Python 3.4.3 - English

Outline: * Use Python 3.4.3 * Use IPython 5.1.0 * Retrieve the history using %history command. * View only a part of history by passing argument to %history command. * Pass arguments t..

Basic

Foss : Python 3.4.3 - English

Outline: load data from file single column multiple columns separated by delimiter cat command loadtxt() columns separated by spaces columns separated by semi-colon unpack argument ..

Basic

Foss : Python 3.4.3 - English

Outline: plotting data list list element-wise squaring plot data points clear plots errorbar function dots or filled circles in plot plot with red pluses explore documentation in ip..

Basic