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
Category Archive: Tutorials
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
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
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
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
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
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
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
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
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
