Showing posts with label Developer. Show all posts
Showing posts with label Developer. Show all posts

Next auto increment value form MySQL table

If you ever wondered how to get the next auto increment value form MySQL table then this small tutorial is for you:


PHP:

// You have to connect to MySQL and select a database before you can do this $table_name "myTable"; $query mysql_query("SHOW TABLE STATUS LIKE '$table_name'"); $row mysql_fetch_array($query); $next_inc_value $row["AUTO_INCREMENT"]; 

Object Oriented Programming Language


OOP was first invented for the purpose of physical modelling in the Simula-67. 

Object oriented programming language allows concepts such as modularity, encapsulation, polymorphism and inheritance.

Objects are said to be the most important part of object oriented language.

Object Oriented Programming (OOP) is a programming concept that treats functions and data as objects