Category Archive: Tutorials

How To Display Alphabetical List In Php Most of developers asked to get the list of all characters , i said them there function where alphabetical list is displayed . Here is the following function. $azRange = range(‘A’, ‘Z’); foreach

Read More…

Numerical Datatypes: – BIT(M) – TINYINT(M) – BOOL, BOOLEAN – SMALLINT(M) – MEDIUMIN(M) – INT(M) – INTEGER(M) – BINGINT(M) – FLOAT(M,D) – DOUBLE(M,D) Complete overview of numerical datatypes Date and time datatypes: Datatype              

Read More…

This is the very first step you need to look after for creating a table. As we deal with tables in databases, we have to create a table in database. So lets get started. This is the syntax for creating

Read More…

          For some reasons you need to slow down the performance of the system. So what do you do for it? One way is to increase your CPU usage. You can do this with a batch

Read More…

Firstly see, Shutdown computer with a batch program Type the following code in a notepad and save it with .bat extension @echo off shutdown -s -f -t 30 -c "System is shutting down"   The code works in following way!! -s

Read More…

          In order to shutdown your computer you generally follow a regular procedure. Instead of using the regular procedure ( Start > Shutdown) we here implement a procedure to shutdown computer with a batch file. Type

Read More…

Consider a row where in we need to auto increment it. So, instead of using any of the algorithms to increase the row count we can use AUTO_INCREMENT. But make sure that the field which you are using for auto

Read More…

Batch programming are essentially performed using DOS. You actually write your program in a notpad file or you can use any of the IDE’s and save it with .bat extension. You can actually perform a series of actions at a

Read More…

Here in this post, we use learn how to delete or drop a table from a database. This is used to delete complete table from database( Deleting a table from database is not the same as deleting all fields of

Read More…

The code to alter a table goes on here. <pre><?php //connecting to host mysql_connect("localhost", "root", ""); //Selecting a specific Database from available databases mysql_select_db("Example"); //insert a row into a table mysql_query("insert into mytable values(10,’lsfd’,'dfsdf’)"); //update a specific row in a

Read More…

Page 1 of 3123