• PHP

Database & Table Creation: phpMyAdmin

Basic Tutorial to illustrate phpMyAdmin: create database and tables. This basic tutorial is to introduce you to phpMyAdmin. In this…

  • PHP

Database & Table Creation: MySQL console (commands/Queries)

Basic Tutorial to illustrate mysql console: create database and tables. Desc Tables; show tables; show databases; Left click, as well…

  • PHP

Format Date and Insert Into Database Table: PHP

Convert string type variable data to formatted date type variable and insert it into database table.. Connecting the PHP Script…

  • PHP

Email Verification in PHP: Part 2

This video to illustrates, verification of user email ID by sending a unique URL to be clicked by the user…

  • PHP

Email Verification in PHP: Part 1

This video to illustrates, verification of user email ID by sending a unique URL to be clicked by the user…

  • C

Linear Search: C

In this video tutorial we shall see how we can search for a number in an array in linear fashion.…

  • C

Find First and Second Biggest In An Array, Without Sorting It: C

We assume that a[0] has first biggest and a[1] has the second biggest value. Now check if this assumption is…

  • C

Find Biggest In An Array, Without Sorting It: C

First we have to assume that a[0] is biggest. Now store the value of a[0] inside a variable called big.…

  • C

Bubble Sort: C

In this video tutorial we illustrate the bubble sort algorithm and also see how to write it in C programming,…

  • C

Selection Sort of N numbers: C

Selection sort is a sorting technique which is inefficient on large list of elements. Its simple and easy to understand.…