PHP program to find number of page views
A PHP program to store page view count in SESSION, to increment the count on each refresh , and to show the count on web page
A PHP program to store page view count in SESSION, to increment the count on each refresh , and to show the count on web page
A simple HTML form containing fields – Name, Address Line1, Address Line2, and E-mail. On submitting the form, the data is inserted into MySQL table using PHP code. We will iterate over each record present in the table to display MySQL data in an HTML table.
PHP program to store current date-time in a cookie and display the Last visited date-time on the web page upon revisiting the same web page. The code is quite simple and small.
Hamming code pattern is mainly used for detection of errors in bits. The main objective is, detection of single bit error, burst error and to correct by using the suitable methodology (by hamming distance concept).
A password in the virtual world is something like a lock in the world of reality. A password is an information associated with an entity that confirms the entity’s identity. Let us understand what is password paradigm?
This project explains the implementation of a QUEUE using a triangle as an element. The queue is a data structure which works on FIFO (First In First Out) technique. The triangles are inserted as elements by assigning color and side to each element(triangle). Triangles will be placed one above another by keeping first inserted triangle at the bottom and the successive elements on top of it. When Delete operation is selected using mouse button the triangle from the front end will be taken out first from the Queue.