Couple of things to notice here, if you're installing wordpress MU locally, then use the IP address http://127.0.0.1 instead of typing http://localhost. The reason being, if you use http://localhost, it will ask you to use http://localhost.localdomain which creates problems later. Also use sub-directories instead of using sub-domain names for multiple users.5) When setup is complete, note the username (which is "admin" by default) and the password provided on the screen and click on "Login".
<?php
// Set name of XML file
$file = "http://[YOUR_BLOGSPOT_ACCOUNT].blogspot.com/atom.xml";
// Load specified XML file or report failure
$xml = simplexml_load_file($file) or die ("Unable to load XML file!");
// Load blog entries
$xml = $xml ->entry;
// Run loop for the number of available entries
foreach( $xml as $row )
{
// Load the entry publish time
$dtime = date("D jS M, Y", strtotime(strtok($row->published, 'T')));
// Load the link of each blog entry
$titlelink = $row->link[4][href];
// Load the text for Comment and comment counts
$comments = $row->link[1][href];
$comm = $row->link[1][title][0];
/* Display the contents (use your own imaginations here =).) */
<a href="http://www.blogger.com/$titlelink">$row->title</a>
// Display publish time
Published on: $dtime
// Display blog entry content
$row->content
// Display number of comments
<a alt="$comments" href="http://www.blogger.com/$comments">$comm</a>
}
?>
<meta name="ROBOTS" content="NOINDEX,NOFOLLOW">
Intro : Plucking
E -----------------------------------------------------------|
B --3----3-----3---3--------------3----------------3---------|
G -----0---0-----0--------------0----0-----0----0----0-------|
D --------------------0-h-2--0----------0-----0---------0----|
A --2----------3---------------------------------------------|
E -----------------------------------------------------------|
Repeat this 4 times
Verse 1
Tomar jonno prithibi aj niechey biday,
E ------------------------------------------------|
B ---3---3-----3---3-----0---0------------3-------|
G -----0---0-----0---0-----0---0----2---2---2-----|
D ------------------------------------------------|
A ---2---------3---------2----------0-------------|
E ------------------------------------------------|
Tobu tomar tukro chayay, E ---------------------------------------------------------|
B --3----3-----3---3--------------3----------------3-------|
G -----0---0-----0--------------0----0-----0----0----0-----|
D --------------------0-h-2--0----------0-----0---------0--|
A --2----------3-------------------------------------------|
E ---------------------------------------------------------|
...
Tomar jonno prithibite ajke chutir rode,
E -----------------------------------------------------|
B ---1---1------2---2------3----3--------4-----4-------|
G -----0---0------2---2-------2---2---------4-----4----|
D -------------------------0---------------------------|
A ---3----------0------------------------2-------------|
E -----------------------------------------------------|
Nijer majhey tomay khoja,
E -----------------------------------------------|
B ---5---5-----7---7------8---8------8---8-------|
G -----5---5-----7---7------9---9------9---9-----|
D -----------------------------------------------|
A ---3---------5----------7----------7-----------|
E -----------------------------------------------|
Akash niley takiey thaka.
E ---0---0-------2---2-------3-3----3-----3------|
B -----1---1-------3---3----------3----3---------|
G -----------------------------------------------|
D ---------------0-------------------------------|
A ---3-------------------------------------------|
E ---------------------------3-------------------|
Last Verse
Tomar jonno poth harie ojanay,
E ------------------------------------------------|
B ---3---3-----3---3-----0---0------------3-------|
G -----0---0-----0---0-----0---0----2---2---2-----|
D ------------------------------------------------|
A ---2---------3---------2----------0-------------|
E ------------------------------------------------|
Tobu tomar lekha kothay,
E ---------------------------------------------------------|
B --3----3-----3---3--------------3----------------3-------|
G -----0---0-----0--------------0----0-----0----0----0-----|
D --------------------0-h-2--0----------0-----0---------0--|
A --2----------3-------------------------------------------|
E ---------------------------------------------------------|
Ferey klanto amar olosh shomoy,
E ------------------------------------------------|
B ---3---3-----3---3-----0---0------------3-------|
G -----0---0-----0---0-----0---0----2---2---2-----|
D ------------------------------------------------|
A ---2---------3---------2----------0-------------|
E ------------------------------------------------|
Koto smriti ondhokarmoy...
E ---------------------------------------------------------|
B ---3---3-----3---3-----3---3----3---3----3---3-----------|
G -----0---0-----0---0-----0---0----0---0----0---0-----0---|
D -----------------------------------------------------0---|
A ---2---------3--------------------------------------2----|
E -----------------------3--------3---------3--------------|






















