
Search In
Hello Friends,
Programmer generally need last insert id for their coding requirement. If you are new in Wordpress and you need to fetch last insert id after insertion. Please follow the code below:
// Define the DB object
global $wpdb;
// Define
How to display a powerset using the following code? what is the mistake and where? why the output is not getting displayed? What to do to display the output?
def power_set(items):
N = len(items)
# enumerate the 2 ** N possible combi
How to integrate Google Street View in Javascript?
This blog will help you to know how to integrate google street view using javascript. Firstly create index.html and paste the following lines of code:
<!DOCTYPE html>
<html>
<head
Hello friends,
Today we will learn how to upload a file in Joomla. In Joomla, upload() function is used to upload a file from source to destination. This function is similar to PHP move_uploaded_file() function.
Syntax:
JFile::upload($src, $dest)
Encapsulation is a process of wrapping code and data together into a single unit. Encapsulationis used to bind method and variables(data). Below is my sample code to demonstrate Encapsulation in java, in this first I have created food class and food
I was having issues for updating stock quantity items of product in Magento. I was loading the product then setting the stock quantity and saving the product. But that does not work for me. Finally it was resolved, in order to update the stock quanti
In the below code example I have created a Tab layout, here I have created two methods, first is add text value and second in declare icons.You can see below example code it clearly describes How to add icon with text in tab layout.
// icon
In this blog, we will see why we get an error while we perform any arithmetic operations on two operands with type byte or short. we find the following error while compiling the source code in Java.
In the case of type short: Let say we add two vari
Hi
How can I change an array list to integer or double?
this is my code and i want show answer like a number and i use it not just print it...
import java.util.*;
public class JavaApplication28 {
public static void ma
Here is a way by which you can send the email via android-intent.
The below code opens a dialog showing email related apps e.g. Gmail, Yahoo Mail etc. if installed in your device. In case your device is not installed with mailing applications then i
