
Search In
The md5 function in PHP is used to hash or encrypt a string by calculating the md5 .
The syntax is:
md5 ('string', raw)
The string here is passed to encrypt the string and the raw is an optional field,which is the format of output.It uses the RS
Hi Readers,
Many times we need to play music even app is in background. It is normal behavior of AVAudioPlayer to play sound when app is in foreground or active state. But to play sound, music or song even in background state can be achieved by foll
To bind checkbox with enum, we have to write some custom code. Here, below is the example of binding checkbox with enum.
Suppose we have a enum EmployeeGroup
public enum EmployeeGroup
{
[Display(Name = "Group 1")]
Group
We can customize our video, audio or image file with help of tools like FFmpeg , ImageMagick
FFmpeg is very useful command-line tool that converts audio or video formats.
ImageMagick is a tool which can be used to edit, create, compose, or conver
Hello friend, I found this interesting question on reddit so after answering their I thought to share this with you here doing sorting and align duplicates in excel are both different lets discuss this one bu one separately.
1. How to s
In osv_memory wizard, just create a normal object, But in place of inheriting from model.model you should it from Inherit from model.model_memory.
Methods of “wizard” are inside the object and if the wizard is complex, You can define workflow on ob
Functions are very useful part of ActionScript3 as they save the time, reduce the code and also increases the re-usability of the code. Function is that block or piece of code which can be used reused at any point in the code. They save the time as t
In my previous blog I have explain how to create animation button in android. Now in this below example I have created new animation button which is alpha effictive.
Here I have added Button and TextView in activity_main xml layout then I have creat
Cakephp 2.*: OR condition
I am writing this blog which will let you know how to set OR condition in Cakephp 2.*:
Write following lines of code to use OR condition:
'User' => array (
'conditions' => array (
'OR' => array(
Singly Linklist:- Hii Friends, The Below code will show you how we can create singly Linklist in Data Structure using C. we can simply create the singly linklist using the pointers and malloc function to insert and delete element dynamically.
#inclu
