Sessions in PHP | PHP Sessions
HTTP is stateless, it can’t carry the values of variables of one page to other page and redirection with values is a basic requirement nowadays. For that we have many…
Difference between DELETE and TRUNCATE Command
DELETE Comand Vs. TRUNCATE Command TRUNCATE command : TRUNCATE command is faster in compare to DELETE command as it uses fewer system & the transaction log resources . This commands…
Difference between include()and require() in PHP | include() vs. require()
In previous post, we have seen how to include files in PHP using include(), require, include_once() and require_once(). All these function helps you to include/insert content of one file to…
Including Files in PHP | include() and require() in PHP
With a single statement in your PHP script, you can incorporate other PHP script. PHP code in this included files will be executed as a part of main PHP script…
Uncaught Reference Error: $ is not defined- A jQuery beginner error
After a long time i tried to get back to coding. I thought it would be good to start with jQuery. I felt that i was a beginner. It was…
PHP Pagination | Pagination in PHP using MySQL
In this PHP tutorial, we will see how to perform pagination in PHP . When you use SQL SELECT statement to fetch records from database, it may result in thousands…
Difference between HTML Controls and ASP.Net Standard Controls | HTML Controls vs. ASP.Net Controls
HTML Controls Controls HTML control runs at client side. controls run at server side. You can run HTML controls at server side by adding attribute runat=”server”. You can not run…
How to Upload Image in Database in PHP | Image Uploading in PHP
In this article, we will see how to upload images using database and display gallery . For image upload we will require an HTML form that allows image uploading , table…
Dropdown List in PHP | Binding Dropdown List with MySQL in PHP
In today's tutorial, we will see how to bind dropdown box with the MySQL table data content of the Dropdown list will not be fixed rather it will come from…
Difference Between ADO and ADO.Net | ADO vs. ADO.Net | A Comparison of ADO and ADO.Net
ADO : ActiveX Data Objects and are two different ways to access database in Microsoft. ADO ADO is base on COM : Component Object Modelling based. is based on CLR…