This is default featured slide 1 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 2 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 3 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 4 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

This is default featured slide 5 title

Go to Blogger edit html and find these sentences.Now replace these sentences with your own descriptions.

Showing posts with label gallery. Show all posts
Showing posts with label gallery. Show all posts

Monday, November 19, 2012

Building a Downloads Gallery WordPress Plugin


Plugins extend WordPress’ functionality and let you do almost anything with your existing site. In this tutorial, we will create a Downloads Gallery plugin for your WordPress website. We will be keeping it plain and simple and shall focus more on WordPress core instead of PHP logics.

  1. Firstly, we will setup the admin area functionality which includes uploading, listing and deleting files.
  2. Secondly, we will list the uploaded files on the actual site for others to download them.
You can easily turn this plugin into a full-featured Downloads system, but as of now, we will focus more on how to work with WordPress to setup a working plugin.

Functionality

We will be setting up a Downloads Gallery for your WordPress website, where we need our users to download all the files uploaded by admin. In brief, we need a page to upload files to WordPress and a page to download the requested files.

File Structure

FileStructure

the above screenshot shows the required files and folder to help us setup our plugin. Let’s firstly understand the file structure:

  1. secure_files: This folder will store our download files.
  2. downloads.php: This file will let the end-user download the file by clicking on a link.
  3. style.css: You can write a seperate design for your Downloads Gallery under this file.
  4. tutlage_file_manager.php This file will store the logics for the front-end view (website page to download files).
  5. tutlage_file_manager_admin.php This file will store the logics for the admin page.

These are the required files in order to setup our WordPress plugin. We will be creating functions to manage uploads and downloads. You will need to have a working knowledge of PHP basics for this purpose.

Getting Started

Create a new folder named tutlage_file_manager under wp-content->plugins, with a new file called tutlage_file_manager.php inside it. Now open that file with your favorite text editor and paste the following code inside it:

<!--?php/*Plugin Name: Tutlage File ManagerPlugin URI: http://www.speckyboy.comDescription: Plugin to setup a simple downloads gallery for your WordPress websiteAuthor: Aman VirkVersion: 1.0Author URI: http://www.thetutlage.com*/?-->

Login to the WordPress dashboard and navigate to Plugins->Installed Plugins. Now, you will be able to find a new plugin listed there. In our case, it shows Tutlage File Manager

WordPressPlugin Dashboard

You can activate the plugin by clicking the Activate link next to the plugin name, but it will not make any changes to WordPress because we have not yet written any code for our plugin.

Working with Action Hooks

Action Hooks are designated points in WordPress which give you a chance to run your code before executing any described function. Let’s say you wish to add something to the footer of WordPress. You can hook your function with the wp_footer function. See the given example. Check out list of available hooks in WordPress.

<?phpfunction your_function() {    echo '<p>This is inserted at the bottom</p>';}add_action('wp_footer', 'your_function');?>

Now if you have the plugin activated, just go to the website and you will be able to see the above text at the bottom of the page. As we have nothing to do with footer, just remove the above code so that we can write the action hook to show our plugin inside the WordPress Settings tab.

function tutlage_file_manager_callback(){    // here goes our callback function} function tutlage_admin_setup(){    add_options_page("Tutlage File Manager", "Tutlage File Manager", 1, "tutlage_file_manager", "tutlage_file_manager_callback");}add_action('admin_menu',tutlage_admin_setup);

Copy the above code inside your tutlage_file_manager.php file and refresh the

Dashboard

page. Now you will be able to see a link inside the settings tab.

FunctionReference-addoptionspageWordPressCodex

Understanding the Above Code

What we have done so far is called the add_options_page function to list our plugin inside the Settings tab. You can read more about add_options_page here.

As of now, we are able to see our plugin link and a blank page. We can move forward to create an Upload button for our plugin. We will keep the logics for our admin page inside a different file. Let’s create a new file tutlage_file_manager_admin.php.

WordPress, by default, listens to the main plugin file which in our case is tutlage_file_manager.php. So we will include the tutlage_file_manager_admin.php file under this file.

function tutlage_file_manager_callback(){    include_once( 'tutlage_file_manager_admin.php' );}

We have edited our tutlage_file_manager_callback() function which will now include the tutlage_file_manager_admin.php file. Let’s do ‘Hello World‘ to check if we are on the correct path. Paste the below code inside tutlage_file_manager_admin.php and refresh the page to see ‘Hello World’ printed on your screen:

<?php    echo '<p>Hello world</p>';?>

WordPressActionHooks

If you do see ‘Hello World’ then we can proceed…

Setting up the Upload Form

Paste the below code inside tutlage_file_manager_admin.php file and refresh the page, you will be able to see the upload form:

<div class="wrap">    <h2>Uploading Files</h2>    <form method="post" action="<?php echo str_replace( '%7E', '~', $_SERVER['REQUEST_URI']); ?>" enctype="multipart/form-data">        <p><label for="Upload File">Upload File: </label><input type="file" name="tutlage_file_upload" /></p>        <p class="submit"><input type="submit" name="Upload" value="Upload" /></p>    </form></div>

This form will not do anything as of now becuase we have not written any code for it. We need to find out whether the Download directory, which in our case is secure_files, exists or not. Paste the below code at the top of your file.

<?php$folder_path = ABSPATH.'wp-content/plugins/tutlage_file_manager/secure_files';function createDirectory($folder_path){    if(!is_dir($folder_path))    {        mkdir($folder_path);    }}createDirectory($folder_path);?>
  1. First, we have defined the base path for our Downloads directory.
  2. Next, we have created the function which will check whether the above directory exists or not. If not, it will make a new directory.
  3. Finally, we are calling the function.

Now, we can move forward and write the function to add the uploaded files under this directory. Add the below code after the createDirectory() function.:

function uploadFiles($directory,$file_name,$file_tmp_name){    if(move_uploaded_file($file_tmp_name,$directory.'/'.$file_name))    {        return 1;    }    else    {        return 0;    }}

We are simply uploading the files to the given directory under this function. Now we will write the code that gets executed everytime the Upload button is clicked. Add the below code inside the same file ( tutlage_file_manager_admin.php ):

if(isset($_POST['Upload'])){    $file_name = strtotime("now").$_FILES['tutlage_file_upload']['name'];    $upload = uploadFiles($folder_path,$file_name,$_FILES['tutlage_file_upload']['tmp_name']);    if($upload == 1)    {        echo '<div class="updated"><p><strong>File Uploaded Successfully <a href="'.str_replace('%7E','~',$_SERVER['REQUEST_URI']).'">Return Back</a></strong></p></div>';    }    else    {        echo '<div class="error"><p><strong> Error Uploading File <a href="'.str_replace('%7E','~',$_SERVER['REQUEST_URI']).'">Return Back</a></strong></p></div>';    }}

WordPressFileUpload [image]

  1. We have created a variable $file_name which will add the current time (in milliseconds) in front of the filename. It will make sure we are not over-riding the existing file with the current one if they both have same name.
  2. Everytime we click the Upload button, we are running the function uploadFiles() with the required parameters.
  3. First, we will pass the folder path.
  4. Next, we will pass the actual file name.
  5. Lastly, we will pass the temporary file name.
  6. If the upload was successful, we will show a success message else we will give an error message.

Check the secure_files folder to find out whether files are saved there or not. At this point, we are able to save files; now we need a way to retrieve all files from the secure_files directory and list them to our plugin’s page.

The below function will return an array of data containing uploaded file information. It is a good pratice to keep all of your functions in one place, so paste the below code right where your last function ends.

 function getUploadedFiles($directory){    $folder = opendir($directory);    while ($file = readdir($folder)) {        if($file !== '.' && $file !== '..')        {            $filename = $directory.'/'.$file;            $file_size = filesize($filename);            $last_date = date("F d Y H:i:s", filectime($filename));            $file_array[] = array('filename' => $file,'filesize' => $file_size,'lastdate' => $last_date);        }    }    return $file_array;}

The above function will list all the files from a specific directory.

Earlier, we created an if statement to upload the files, now we will create an else statement just next to it to list all files.

 else{    $list_files = getUploadedFiles($folder_path);     $output = ' <table class="wp-list-table widefat fixed posts" cellspacing="0">    <thead>        <tr>            <th id="title" class="manage-column column-title sortable desc" style="" scope="col">                <a href=""><span>Title</span></a>            </th>            <th id="title" class="manage-column column-title sortable desc" style="" scope="col">                <a href=""><span>File Size</span></a>            </th>            <th id="title" class="manage-column column-title sortable desc" style="" scope="col">                <a href=""><span>Upload Date</span></a>            </th>            <th id="title" class="manage-column column-title sortable desc" style="" scope="col">                <a href=""><span>Actions</span></a>            </th>        </tr>    </thead><h2> Uploaded Files </h2>    <tbody>';    if(!empty($list_files))    {        foreach($list_files as $key => $value)        {            $output .= '<tr>                <td class="post-title page-title column-title">                    <strong>'.$value['filename'].'</strong>                </td>                <td class="post-title page-title column-title">                    <strong>'.$value['filesize'].' Bytes </strong>                </td>                <td class="post-title page-title column-title">                    <strong>'.$value['lastdate'].'</strong>                </td>                <td class="post-title page-title column-title">                    <a href="'.str_replace( '%7E', '~', $_SERVER['REQUEST_URI']).'&&file='.$value['filename'].'&&action=delete"> Delete </a>                </td>            </tr>';        }    }    else    {        $output .= '<tr><td> No files have been found </td></tr>';    }    $output .= '</tbody></table>';}

It does seem like a lot of code, but most of it is HTML.

  1. First, we have called the function getUploadedFiles() which will get all files from a directory and return us the array of data.
  2. Next, we have created a table and defined ID and class attributes to make sure our table looks quite similar to the native WordPress table structure.
  3. We have also stored the output inside a variable called $output.
  4. All we need to do now is to echo the above variable.

Place the below code next to the form we created, and we are done!

 <div class="clear"></div><?php if(isset($output)) { echo $output; } ?>

WordPressFileUploading [image]

If everything has gone right, you will now be able to find a Delete button with every file listed on a table. So, why not write one more function to delete the selected file?

 function deleteFiles($file_path){    if(is_file($file_path))    {        unlink($file_path);    }    else    {        rmdir($file_path);    }    return true;}

The above function is quite simple as it will check if the selected filename is a file. Then, we can use the unlink method to delete else, we will also use the rmdir method which will remove the directory.

Now where should we write the code that will run after hiting that Delete button? Do you remember that we created if and else statements earlier? Let’s add else if inside them and this else if will be the one to delete the file.

 elseif(isset($_GET['action']) && $_GET['action'] == 'delete'){    $file_path = $folder_path.'/'.$_GET['file'];    if(deleteFiles($file_path))    {        echo '<div class="updated"><p><strong>File Deleted Successfully <a href="'.str_replace('%7E','~',$_SERVER['PHP_SELF']).'?page=tutlage_file_manager">Return Back</a></strong></p></div>';    }}

Let’s have a quick recap of what we have done so far. We’ve learnt how to add a link to our plugin inside WordPress Settings menu, figured out how WordPress hooks work and have created the functionality to upload and list files from admin’s Dashboard.

Now, we will work with the front-end logic where a user can download all the listed files from our website. Let’s break it down to find what we need to make it work.

  1. Create a dynamic page where all files will be listed.
  2. Grab all files from our secure_files directory and list them on the above page.
  3. Add functionality to download file with onclick event.

Let’s get started with it. Open file tutlage_file_manager.php and paste the following code inside it.

function thetutlage_add_share_page(){    if (!get_page_by_title('Downloads Gallery'))    {        $post = array(            'post_content'  => '',            'post_name'     =>  'Downloads Gallery',            'post_status'   => 'publish',            'post_title'    => 'Downloads Gallery',            'post_type'     => 'page',            'post_parent'   => 0,            'menu_order'    => 0,        );        wp_insert_post($post);    }}thetutlage_add_share_page();

The above function will check whether a page with the title Downloads Gallery exists or not. If our Downloads Gallery exists already, than we will not create a new page else we will create one and name it Downloads Gallery.

Now go back to your actual website and you will find a blank page with a title Downloads Gallery. With that done, we now need to write a function to grab all files from the secure_files directory and list them on this page.

Copy function getUploadedFiles() from tutlage_file_manager_admin.php and paste it to tutlage_file_manager.php and rename the function to getDownloadFiles().

This function will do the same thing: it will grab all the files from a given directory and return them in an array. Now we need to call this function, break the array and list them on the page with title Downloads Gallery.

We need to list files only where the page title is Downloads Gallery, and in order to do that we can use a handy WordPress is_page function:

function list_downloads($content) {    $page = get_page_by_title( 'Downloads Gallery' );    if(is_page($page->ID))    {        $folder_path = ABSPATH.'wp-content/plugins/tutlage_file_manager/secure_files';        $files = getDownloadFiles($folder_path);        if(!empty($files))        {            $output = '<table id="tutlage_file_manager">                <tbody><tr>                    <th>File Name</th>                    <th>File Size</th>                    <th>Download</th>                </tr>';            foreach($files as $value)            {                $output .= '<tr><td>'.$value['filename'].'</td><td>'.$value['filesize'].' Bytes</td><td><a href="'.get_option('siteurl').'/wp-content/plugins/tutlage_file_manager/downloads.php?file='.$value['filename'].'"> Download </a></td></tr>';            }            $output .= '</tbody></table>';        }        else        {            $output = '<h2> No files found </h2>';        }        return $output;    }}

Understanding the Above Code

Most of the above code is HTML which will let us display our files inside a table. There will be a link next to every item which will allow the user to download it.

  1. First we will get a page where the title is Downloads Gallery
  2. Next we will make a check whether that page exists or not using is_page function.
  3. If it exists than we will call the above function getDownloadFiles(), which will return files as an array.
  4. Finally, we will break the array and list the items inside a table.

Now if you refresh the page, you will see no change. It is because so far we have only created the function. We still need to attach this function to WordPress so that every-time the content is loaded, our function runs as well.

add_filter( 'the_content', 'list_downloads' );

Just paste the above code in the same file tutlage_file_manager.php and now refresh the page. You will see all the files listed there. Now all we are left with is the downloads.php file. Make a new file inside the plugin directory and name it to downloads.php.:

<?php    $files = $_GET['file'];     $filepath = 'secure_files/'.$files;     header('Content-Description: File Transfer');    header("Content-Disposition: attachment; filename=\"$files\"");    header('Content-Type: application/octet-stream');    header('Content-Transfer-Encoding: binary');    header('Content-Length: ' . filesize($filepath));    header('Cache-Control: must-revalidate, post-check=0, pre-check=0');    header('Pragma: public');    header('Expires: 0');    readfile($filepath);?>

downloads.php does not have much work to do: it will get the file name from the URL and will use method to read the file back to the user. Now, you can easily test the entire plugin right from uploading to downloading files.

Is There Anything Left?

Yes. As of now, we have not created any stylesheet, so let’s take care of that too. Create a new file named style.css.

This file will let you write styles for your actual Downloads page on the website. We just have to link the stylesheet to our existing function called list_downloads(). Open tutlage_file_manager.php.

wp_enqueue_style( 'myprefix-style', plugins_url('style.css', __FILE__) );

Paste the above code inside if statement of list_downloads() function. You can now write any styles for your Downloads Gallery.

All done! Now, why don’t you download the source files and try it for yourself.

Using jQuery to Validate the Standard WordPress Comment Form →
Using the Power of the .htaccess File to Improve WordPress SEO →
Tracking Social Media Sharing and Button-Clicks with JavaScript and WordPress →
For the Novice Developer: The Anatomy of a WordPress Theme →
Focusing on Usability with an Enhanced Pagination Design in WordPress Entries →




Source : internetwebsitedesign[dot]biz

Wednesday, November 14, 2012

Designer furniture India, Designer furniture manufacturer in India, Designer furniture manufacturer company

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

Welcome to S.R.G. (Sumitra Rajkripal Group) since 1895

SR Group India Belongs To  SUMITRA RAJKRIPAL GROUP, A Business House That Is Known For Its Strong Roots And Expertise In Timber And Wood Business. Sumitra Rajkripal Group Of Companies Is The Only Group Dealing In All Forms Of Wood Starting From Importing Wood , Manufacturing & Exporting Of Furniture, Plywood, Veneers And Making A Complete Chain Right From Raw Material Sourcing To Finished Furniture.

More Than 100 Year Old Leading Group In India Has A Gross Turnover Crossing 45 Million Dollars Mark (INR 180 Crore) Per Annum.

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

copyright @ srgroupindia.com
Site Designed, Developed & Maintained by Fable Technologies.

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

for more details Click here SRG Group India


Source : designerashish[dot]wordpress[dot]com

Designer furniture India, Designer furniture manufacturer in India, Designer furniture manufacturer company FABLE , Web Development Company, provide its skillful web Designing and IT outsourcing capabilities and give guideline to help companies,offshore developing challenging products. New Social BookMarking Site- Designerashish.com Transferring of blog Guest House in Greater Noida, Guest Houses in Greater Noida, Bed & Breakfast in Greater Noida, BNB in Greater Noida, Bed and breakfast in Greater noida 2010 in review Budget Hotel in Paharganj, Budget Hotel in Delhi, Cheap Hotel in Paharganj, Cheap hotel in Delhi

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

Welcome to S.R.G. (Sumitra Rajkripal Group) since 1895

SR Group India Belongs To  SUMITRA RAJKRIPAL GROUP, A Business House That Is Known For Its Strong Roots And Expertise In Timber And Wood Business. Sumitra Rajkripal Group Of Companies Is The Only Group Dealing In All Forms Of Wood Starting From Importing Wood , Manufacturing & Exporting Of Furniture, Plywood, Veneers And Making A Complete Chain Right From Raw Material Sourcing To Finished Furniture.

More Than 100 Year Old Leading Group In India Has A Gross Turnover Crossing 45 Million Dollars Mark (INR 180 Crore) Per Annum.

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india
Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

copyright @ srgroupindia.com
Site Designed, Developed & Maintained by Fable Technologies.

Designer furniture manufacturer india, Designer furniture manufacturer in India,Designer furniture manufacturer company,Handicraft furniture manufacture India,Handicraft furniture manufacturer in india,India wooden handicraft furniture company,Wooden handicrafts furniture in india ,Indian wooden furniture,Designer furniture manufacture company in india,Handicraft furniture manufacturer company in india

for more details Click here SRG Group India

IT outsourcing capabilities and methodologies to help our clients develop web solutions ranging from static web site to complex ecommerce applications. FABLE’s mission is to act as a bridge between your vision and reality. We provide professional resources located at our offshore IT outsourcing offices at a fraction of cost of resources at US and Europe.

http://www.fabletechnologies.us/

Hey Guys I have Just Launched My New Social Bookmarking Site.. Click Here to submit your site

http://www.designerashish.com/

Hey Guys !  Thank you  for visiting my blog. I have a good news for you all guys. I have Transferred this blog on my main domain.

Thats is Designerashish.com

and my blog address is blogs.designerashish.com

so keep visiting my site and my blogs… and if you have any suggestions keep me informed by mailing me on address

ashish7422@gmail.com

mail@designerashish.com

Thanks & Regards,
Designerashish,
Project Manager, Sr. Designer, Sr. Developer. SEO, Blogger,
Fabletechnologies.com

Welcome to Chicky’s Place

Guest House in Greater Noida, Guest Houses in Greater Noida, Bed & Breakfast in Greater Noida, BNB in Greater Noida, Bed and breakfast in Greater noida is a Registered Home stay accommodation under the ‘Incredible India’ scheme of Government of India.

We at Guest House in Greater Noida, Guest Houses in Greater Noida, Bed & Breakfast in Greater Noida, BNB in Greater Noida, Bed and breakfast in Greater noida have fully furnished A/c rooms & a Suite with all modern amenities and comfort at a prime location close to Expo Mart in Greater Noida.

Guest House in Greater Noida, Guest Houses in Greater Noida, Bed & Breakfast in Greater Noida, BNB in Greater Noida, Bed and breakfast in Greater noida is ideally suitable for your foreign clients and other guests who are looking for home stay accommodation at reasonable rates.

read more

Photo Gallery

view our picture galley
gallery gallery
gallery gallery
For more pictures : Click Here

Proximity Comforts

Walking Distance From EXPO Mart

Close to Alpha Commercial Hub

Close to Malls & Markets

Sports City- 11.5 Kms

GautamBudh University – 3 Kms

The stats helper monkeys at WordPress.com mulled over how this blog did in 2010, and here’s a high level summary of its overall blog health:

Healthy blog!

The Blog-Health-o-Meter™ reads This blog is on fire!.

Crunchy numbers

Featured image

A helper monkey made this abstract painting, inspired by your stats.

A Boeing 747-400 passenger jet can hold 416 passengers. This blog was viewed about 4,700 times in 2010. That’s about 11 full 747s.

In 2010, there were 5 new posts, growing the total archive of this blog to 10 posts.

The busiest day of the year was April 9th with 123 views. The most popular post that day was Perfect Full Page Background Image.

Where did they come from?

The top referring sites in 2010 were phpcamp.net, digg.com, google.co.in, google.com, and designerashish.freehostia.com.

Some visitors came searching, mostly for designerashish, jquery tabs next previous, wordpress fade hover, jquery ui tabs next previous, and site:designerashish.wordpress.com.

Attractions in 2010

These are the posts and pages that got the most views in 2010.

1

Perfect Full Page Background Image December 2009

2

jQuery UI Tabs with Next/Previous February 2010
4 comments

3

Building a jQuery/PHP Powered Chat Room February 2010
3 comments

4

Color Fading Menu with jQuery February 2010
3 comments

5

jQuery MagicLine Navigation February 2010
2 comments

Budget Hotels In Delhi

Sushree Continental Delux, Budget Hotel in Paharganj, near Delhi Railway Stations

Delhi Hotels are renowned for their world-class hospitality and customer satisfaction.

Welcome to Su Shree Continental Hotel, a well-established budget hotel in Delhi. We being a part of Delhi budget hotels started functioning in 1971 and since then we have accommodated guests from almost all regions of the world. We have a wide array of rooms for our esteemed guests including the standard or Budget room, Semi-deluxe room, Deluxe room, Presidential Suite, Junior Suite, Superior room and Family room. One can choose the type of room as per his/her convenience and budget. All our rooms are equipped with modern day facilities and are the best available option for the guest looking for best priced rooms in budget hotels.

The most striking feature of our hotel is its perfect location. We are just diagonally opposite to New Delhi Railway Station and nearby Delhi airport. Another advantage associated with the location is the close proximity of markets and historical monuments. We are located near the famous markets of Connaught Place and Karol Bagh.

Our hotel is renowned name when it comes to budget hotels in Paharganj. We offer quick online hotel booking and reservation and free airport pick up services as a complimentary service to our guests.

We give high attention towards the safety and security of our guests. We follow strict rules & regulations to ensure the safety of guests. Our highly regarded safety and security policies have given us the name of safe hotel in Delhi. If you are looking for a peaceful accommodation at one of the leading hotels of Delhi, then your search ends here.

Landmark
Sadar Bazaar 0km
Cannaught Place 1km
Jama MAsjid 1km
Train Station
New Delhi 0km
Old Delhi 3km
CP Metro Station 1km
Park
Palika Park 1km
Gandhi Park 2km
Budhha Jayanti Garden 4km
Hotel Aminites
  • Free Airport Pick up Service Free Airport Pick up Service
  • 24 hrs Room Service 24 hrs Room Service
  • 24 hrs Generator Backup with A/C 24 hrs Generator Backup with AC
  • Laundry Service Laundry Service
  • Fax Machine and Computer on Request Fax Machine and Computer on Request
  • All Air-conditioned Rooms All Air-conditioned Rooms
  • Baggage Storage on Request Baggage Storage on Request
  • Multicuisine Restaurant Multicuisine Restaurant/Cafe
  • Business Centre Business Center
  • 24 Hrs Money Changer 24 hrs Money Changer
  • Senior And Woman Friendly Senior And Woman Friendly
  • Close To Railway Station Close To Railway Station
  • Free Car Parking Free Car Parking
  • Lift or Elevator Lift or Elevator

Source : designerashish[dot]wordpress[dot]com