2
Display Tags in wordpress
A very simple method to add the tags on to a wordpress theme.Its pretty simple just add the below lines to the file you want it to appear, prefferably SIDEBAR.PHP.This can be easily done using wp_tag_cloud(),
Here the smallest means the...
HTML E-mail Using PHP
There are two varieties of email. Text and HTML. Text email is like regular text messages. HTML email is like viewing a webpage with colors and images. To create the effect of an HTML email, a couple of extra headers must be added.
$to = "admin@mistonline.in";
$subject...
Export mysql tables to excel new version using phpxls pear spreadsheet writer
Export mysql tables to excel new version using phpxls pear spreadsheet Excel Writer, This is very easy and flexible. Other techniques of creating excel sheet may work with Openoffice but will not work mostly with Microsoft excel viewer. So this...
Finding The Size Of Images Using Javascript
If you know some javascript and some HTML then you can go forward….Those who need explanations plz feel free to contact me
<script language="JavaScript">
function getImgSize(imgSrc)
{var newImg = new Image();
newImg.src...
Search null value or fields in mysql
This is a simple query in mysql which will return the null fields in a column from a table .
This is the Select statement.
S3LECT * from TABLE_NAME where COLUMN_NAME is null or COLUMN_NAME='';
This statement.[Here i am setting a value 'no'...
XML Parsing Made Easy
I am going to give you the code required to parse XML easily
usingone file.Just copy and paste the code and customize it
accordinglyAny doubts feel free to contact me.
The first file is the XML file
parse.xml
<?xml version=”1.0″...
DOM elements dynamically using our JAVASCRIPT
DOM elements
Dynamically using our JAVASCRIPT
JAVASCRIPT
function AddItem()
{
// Create an Option object
var opt = document.createElement(‘option’);
// Add an Option object to Drop Down/List Box
document.getElementById(“DropDownList”).options.add(opt);
var...
Java interview questions
Language Fundamentals
How many number of non-public class definitions can a source file have
A source file can contain unlimited number of non-public class definitions
List primitive data types, there size and there range (min, max)
Data...
Interview Tips And Tricks
This is suitable for all kind of interview questions and answers, interview questions, phone interview tips, interview tips and answers, common interview questions, sample interview questions, sales interview tips, college interview tips etc., ...
Threads in java
A small program that shows THREADS in action.
public class TwoThread extends Thread {
public void run() {
for (int i = 0; i < 10; i++) {
System.out.println(“New thread”);
}
} public static void main(String[] args) {
TwoThread...
Javascript Clock
Hi guys i am back with yet
another tutorial
on javascript
First of all create an html page say TIME.HTML
open it with your favourite text editor ,
PASTE THE FOLLOWING CODE
<SCRIPT LANGUAGE=“JavaScript”>
<!–
function...
Displaying Text from User On Your Webpage
So catch one more interesting javascript
<SCRIPT LANGUAGE=”JavaScript”>
<!– Hide this from older browsers
var value = window.prompt(“What’s your name?“, “tutorials.co.in“);
...
