
Search In
"Getting incorrect results while using ToString("dd/mm/yyyy") "
In this article I am sharing one of the issue I got stuck in.
Please go through the following code :
string date = "30,jun,2015";
DateTime dt = Convert.ToDat
What is compact() Function ?
compact() Function is used for creating an array from variables and their values.
Syntax compact() Function:
compact(variable1,variable1,variable3....)
Note:If any strings that does not match variable names will be sk
In below example, I have written Python script to confirmation receipt through python code. Use below python code in your .py file :
'partner_id': fields.many2one('res.partner', 'Partner', change_default=True, required=True, states={'confirm':[('
Hello users, today I teach you How to Overwrite Additional Image Sizes of parent in child theme Wordpress.
Below code is the Parent theme for image cropping.
add-action( 'after-setup-theme', 'setup' );
function setup()
{
add-image-size( 'slide
Welcome to FindNerd. Today we are going to discuss the concept of cron in wordpress, how we can set up the cron in wordpress. We use the cron_schedules filter to set
the time intervak to schedule, ewp_send_email_cron_hook function to check the next a
How to save CakePHP session in Database ?
To store session in Database, you need to create a table in DB so that you can store the session in it.
Follow below steps.
1. Create a table in DB
CREATE TABLE IF NOT EXISTS `users` (
`id` VARCHAR(255) NOT
The below code will help you to to change the site wide validation required marker as well the hover text. Though there are various approach you can do but this is one of the massively used approach.
Go to Drupal Root Folder->includes->from.
Using maven we can create executable JAR file with all the requires dependencies and then we can use that JAR file to execute the whole project. So, to create the JAR file just add the below plugin inside the build tag.
<plugin>
<artifac
The foreach function in php will be used for a easy way to iterate over the loop and it is only used in array and objects or It will give you an error when you try to use it on a variable with different data type.
Syntax:
foreach(array_expressio
Thread:
A thread is a light-weight process which can run independently. A java program can contain multiple threads. Every thread is created and controlled by the java.lang.Thread class. We can create threads in two ways:
By extending Threa
