Showing posts from 2017

How to convert .CSV file to .SRT using PHP

Hello friends to i have assign a new task while working on my current project in which i have to convert a .CSV file into .SRT using PHP . After spending three to four hours i have successfully created a script threw this i can able to convert .CSV …

How to insert array of data into mysql database using php

Lets say I have an Array that looks like below when output threw print_r(). So now i want to insert this array data in mysql database.  NOTE : In this array key is the name of table column . So below is the simple function to do this -  …

Bubble Sorting in PHP

Bubble Sort is the simplest sorting algorithm that works by repeatedly swapping the adjacent elements if they are in wrong order (Accending or Descending). Example : First Pass: ( 5 1 4 2 8 ) –> ( 1 5 4 2 8 ), Here, algorithm compares the f…

Load More
That is All