
Search In
Xamarin is a tool that can be integrated with visual studio for building mobile application using the language you are comfortable with like C#
With Xamarin you can build an Android application, IOS application using the C# code on your backend.
Using php we can easily find difference in days excluding weekends. First take start date and end date and generate strtotime for these dates to convert into string. After manipulation using while loop we can easily get the count of week days excludi
I am removing duplication from arraylist. To do this, first add all the items of arraylist to a HashSet.
HashSet takes only unique items.
Finally, take HashSet items to the arraylist.
List arrayList = new ArrayList<>();
arrayList.add("A");
a
To update an extensions in Joomla you need to follow the steps given below:
Login to the back-end of the Joomla i.e., Admin section
Now click Extensions-> Extension Manager
Extension Manager page will appear. Now click Update.
This page will dis
Hello Everyone, today I am here to guide you "How to calcuate distance between 2 place with the help of zip code in Php".
$point and $point are two places, you can pass these values into total_distance() function
$radius is earth radius in miles
$di
Hello Guys!
Testing is a very most important part of any project. Without good testing, a good product is uncertain. We have different frameworks available for testing the product functionality.
We have a good framework JUnit available in Java. Which
Hello Readers if you want to update mulitple record by multiple id, then you have to use in clause in MySql
Lets see the example as below:-
$ids = array(474,25, 99,101);
Here I have an array $ids with multiple id's. Now this array will be inse
Hello Readers if you have two images i.e. one png and one jpg, Then by using PHP you can merge both on a single one.
Lets see the example as given below:-
<?php
# If you don't know the type of image you are using as your originals.
$image = im
LTRIM(str)
LTRIM(str) function returns the string str after remove the leading space characters means if you want to remove the all spaces from the left side of a string in mysql you can use this LTRIM mysql function.
Here I am giving a example to e
Hello Readers ,
If we have an array and we want to delete the last record in an array then their is a function called array_pop() .
The array_pop() function deletes the last element of an array.
Example :
<?php
$a=array("red","green","blue");
