Showing posts with label Database. Show all posts
Showing posts with label Database. Show all posts
03 October, 2020
28 March, 2020
Product Ajax Search Filter with Infinite Scroll more Using PHP and Mysqli
Recently I have posted Product Brand, Size, Material Checkbox Search Filtering Using PHP And Jquery. This search filter script doesn't have any pagination. Now i have created search filter with pagination. In this tutorial, we will discuss Product Ajax Search Filter with Infinite Scroll more Using PHP and MySQL. Load more it's user-friendly without refreshing the page user can get the filter products.
11 July, 2017
Mysql Stored Procedure and Get Procedure Data From PHP
Hi guys, Today we are going to see How to create a stored procedure and get call data from a stored procedure by using PHP. Before going to the topic let see What is stored procedure? and Why we need use stored procedure?. A stored procedure is a group of SQL statements that form a logical unit and perform a particular task, and they are used to encapsulate a set of operations or queries to execute on a database server.
08 December, 2015
Fetch Random rows records from Database Using Mysqli and PHP
In this tutorial, you will learn various techniques to how to Fetch Random rows records from Database. Using this code you can display random gallery profile, Online examination random questions, multiple choice quiz system. I used following simple query for retrieving random records from database table.
02 November, 2015
18 August, 2015
Convert PHP data to JSON API url
Today I have discussed Convert PHP result array to JSON API URL. JSON is a lightweight data-interchange format. The current trend to develop the app and web app server side exchanging data between their servers XML or JSON format. JSON is the easiest way to translate a JavaScript object into a PHP associative array.
03 March, 2015
PDO basic insert,view,update,delete with php function
The mysql extension is deprecated due to the some sql injunction issue. I would suggest to use mysqli or PDO. mysqli based on object oriented process (OOPS). The PHP Data Objects (PDO) extension defines a lightweight, consistent interface for accessing databases in PHP. it seem how we are using mysql same for PDO.
17 February, 2015
10 July, 2014
07 July, 2014
03 June, 2014
How to Make a Simple Search Engine using PHP and MySQLi
In this tutorial, I have created small search engine by using PHP and MySQLi. this search engine searches to user date into the database. similar like google search engine. it will check matched keywords to the table title,description,website URL. Recently i have create updated search engine tutorial.
15 May, 2014
phpmyadmin sql query builder
In order to access the data from a database at the front end, programmers are querying using SQL. Most of the programmers are following their own style of coding. There is a better way of doing it using phpmyadmin sql builder. They can use the inbuilt sql builder in phpMyadmin which can fetch the data from you localhost server.
04 March, 2014
Multiple image upload concept using php & mysql
In this tutorial, We are going to see How to upload multiple images using PHP and MySQL. Sometimes we need to allow user upload multiple images in the database. Once the user has uploaded multiple images we must need to provide image edit, delete option. Previously I have used to stored all the images name in single table column for using implode() and explode() function. Later I'm facing issues on to delete or modified particular uploaded images.
13 February, 2014
PDO Form value inserting into Database
previously i posted on PDO basic tutorials so now i create small form using insert and update query in PDO. it's best helpful for Beginners to learn something about PDO.
12 February, 2014
PDO Basic insert,view,update,delete function
Nowadays Most of them using Mysql query but MySQL is old extension officially deprecated. After improve the code to induce on Mysqli and PDO function. follow this tutorials learn how to insert,view and update query using PDO.
07 February, 2014
05 September, 2013
20 August, 2013
14 August, 2013
Email subscription concept using php and mysqli
This concept user can register our email id to the particular site. for the purpose of when the site administrator post on any messages or updates its directly send the email on subscribe users. coding function used on when user can be register our email id in website form its post and store to the database.
31 July, 2013
PHP MySqli Basic usage (select, insert & update)
Mysqli is a database system used on the web its runs on a server side. Mysql query used to transaction the client data to store the server table. This is sort database storage it’s not possible millions of people access database so PHP team announced plans to deprecate MySQL extension alternatives on introduce Mysqli - "i" is standing improvement its based object oriented implementation. MySQLi supports prepared statements, transactions and multiple statements.