
Search In
Hello Readers,
FFmpeg has an extremely effective level filtration system, which usually can be used to completed the various tasks. A lot of them are listed here. You more can be found in the FFmpeg official documentation. In all the following exa
What Basic Steps You can take to make you drupal site to make it much more secure.
Actually Drupal is configured to be secure out of the box, because it restrained it's permission, but as we extend website according to our need we get playing around
Plugin is an extension which provides a function that is associated with any trigger events. Following are the files required for creating a simple custom plugin in Joomla.
1 myfirsttest.xml
2 myfirsttest.php
3 index.html
First for creating a custo
Hello everyone, this article demonstrate some useful PHP functions which can be used to change string case into lowercase and uppercase. The article also demonstrate some other functions which can be used to convert first character of each word in a
Drupal Provides you lot of option to creat a unique home page or say site front page. This could be achieved by number ways bdefined below.
Firstly Access the /sites/all/theme[active theme], copy a page.tpl.php page and paste it in same directory
Hello Reader's If you want to know more about the PHP JSON Object then this blog will helps you. Lets see how to handle the working data of it.
<?php
$trends_url = "http://search.twitter.com/trends/daily.json";
// initialise the session
$ch = c
Hello Reader's if you are making the file upload in html form, Then you can also show the status of the file to upload.
Lets see the example code as below:-
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" href=
Many times we need to calculate sum or product of values stored in an array. The most common way is to calculate sum or product by using for or foreach loop. For example we have an array with some numeric values, now we want to calculate the total su
number_format() is one of the most popular PHP function which is used to format numbers with grouped thousands.
Syntax : number_format(number, decimal_values, decimal_point, thousand_separator)
number : The number which has to be formatted.
decimal_v
In MySQL, DELETE and TRUNCATE both are used for deleting data from table.
DELETE
DELETE comes under DML(Data
Manipulation Language).
DELETE can
be used to delete a particular row
by using WHERE clause.
It is slower
than TRUNCATE as it keeps logs.
