Mostlikers Programming Blog, Related codeigniter jquery, php, mysql and more things
Showing posts with label Database. Show all posts
Showing posts with label Database. Show all posts

17 February, 2015

Sql Basic functions

Today i want to share basic functions of sql. SQL statements are used to perform tasks such as update data on a database, or retrieve data from a database. For getting database data we use many type sql functions is there follow this tutorials learn more about sql. 

SQL basic functions

10 July, 2014

Import CSV File Data Into Database Using PHP

Import CSV File Data Into Database Using PHP sometime large amount Database data not possibe to insert into at a time. Ex; E-commerce site add all product list.  that's why use to  CSV file import code . just create  Excel document enter your data save CSV format after that import to database.

07 July, 2014

Facebook style photo comment system

 Facebook style photo comment. Here i have use normal light box pop window. inside the box i have design similar like facebook design. follow this code you can learn facebook style photo comments system.

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.

How to Make a Simple Search Engine using PHP and MySQLi

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.  

multiple image upload using php and mysql

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.