25 wordpress templates to make your life easy

WordPress has evolved from being just a blog to a complete CMS and every other person is nowadays using WP. And similarly you are interested in WP that is why you are here. But for the Beginners it is hard to directly go into Templates and create one on your own, and even for the experienced ones it is easier to find a nice template that meets his needs, rather than create his own. So today I present you with 25 WordPress templates that will make your life easy. So here goes the list.

1. Red Light
Red Light template

2. Redoable 1.0
Redoable 1.0

3. Rounded Blue V2
Rounded Blue V2

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor
Tuesday, June 30th, 2009 Website Development No Comments

Create a pagination in PHP (with search parameters)

For long I had problem paginationg through search pages. Values posted by $_POST would be lost while carrying over to next page. And most of you might have faced similar problems. Today I’ll show you how that can be done. In my previous tutorial, I tought you how to create a pagination in php. That might have done wonders for many but for those who were trying to paginate results from a search parameter (value taken from search box), the code might not have helped that much. Though some of you might have got the concept and remodelled it. So I shall now show you how to paginate the pages in PHP while in search. The process is quite simple and similar to my previous tutorial.

So let’s begin. I have assumed that you have made a file ‘connection.php’ where you store the process of connecting to the database.

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags: , , , , , , , , ,

Tuesday, May 26th, 2009 How To, PHP, Tutorials, Website Development 2 Comments

PHP and AJAX to change Listbox value with change in textbox

Ok Today we shall learn how to create a Listbox ( select menu ) that changes its value dynamically with the change in Textbox.  For example if  you type “a” in textbox, it would show all the values that are in the database starting from “a”

So let us begin. First create a new file and create a form and call the javascript file that we will be creating.

<script language="javascript" type="text/javascript" src="search.js"></script> 
<form name='myForm' style='padding-top: 10px; padding-bottom: 7px;'> 
Type Value here:
<input type='text' name='searchQuery' id='searchQuery' onkeyup="ajaxSearch();" />
</form>
<div id='ajaxDiv'><?php include('search.php'); ?></div>

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags: , , , ,

SCHOOL / COLLEGE Website @ Rs 6000/- only

Yes Ladies and Gentlemen,

You have heard it right. I am offering this for a limited time since, it is admission period and everybody want to make the most of it. And everybody who is educated now know the impact of website to their organization. So I am offering a complete website design and development to the colleges and schools of Nepal at just Rs 6000/-

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags: , , , , , ,

Friday, April 24th, 2009 Website Development, Website reviews No Comments

A free PHP Poll Script.

Okay everybody, If you have been looking for a free PHP Poll script powered by MySql that is fully customizable yet very easy to use. Then here it is. I have made a Poll script in PHP and MySql. Use it as you like. And if possible please leave any kind of  link to my website.

Download Here

Thanks

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags: , , ,

Thursday, April 23rd, 2009 PHP, Scripts, Website Development No Comments

Upgrading my Site.

I am upgrading my site. So please bear with me. The site should be good looking and very informative within few days.

Sorry for the inconvinience.

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor
Thursday, April 16th, 2009 Uncategorized No Comments

How to Create a config.php file, like the ones on Big CMS and Blog tools

Well there must have been a time when you needed to create a config.php file that stores all the important variables of your website that need to be regularly accessed and changed. Using database for these is not a solution because they are generally one value or two. and are very large in numbers. So a better option is to create files that contain all the variables.

A config.php file would generally look like this.

$name = 'utsav';
$email = 'utsav@rathour.com.np';
$telephone = '123';
?> 

these variables could be used at any place calling the config.php( or any file name you give ) file. So ever wondered how they are created or are looking for a method to create these. Worry no more. I’ll teach you the easy way.

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor
Thursday, April 16th, 2009 How To, PHP, Tutorials 1 Comment

Pagination in PHP

Okay so how many of you have been stuck in situations where you have plenty of records to display from a table and you cannot divide the records into pages. And your page becomes as long as “Great Wall of China”.  This has been situation for most of the people at least once. So today I am going to show you how to create pagination in PHP.

Well here is the code that you can use to create pagination. I have explained the code with the help of comments for each line, so won’t be explaining here.

But remember to replace the fields in the connection parameter with your values.

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags:

Thursday, April 16th, 2009 How To, PHP, Tutorials No Comments

How to encrypt in C# using md5

There must have been times when you needed to encrypt your data while using c# (…obviously that’s why you are reading this tutorial.) but didn’t know how to. Well this had been a question for me when I was doing my minor project for college and had to search a lot for it. And believe me it was very hard to find a good tutorial on it. So now I am going to provide you with the code and method to encrypt your data using md5 in C#.

To start off, open a project in C# (a new one or your existing one). Now Right click on the project name and add a new class on to it, name it “function.cs”. As shown in the figure.

› Continue reading

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor

Tags: , , , , ,

Wednesday, April 15th, 2009 .Net, C#, How To, Tutorials 1 Comment

Create PSD to CSS online without any knowledge, absolutely free.

Searching throught the Internet I found a great site that allows you to convert your PSD templates to valid css without any problem in matter of seconds.

The site can be viewed at http://psd2cssonline.com/ this site not only converts your psd to valid css files but also allows you to create JOOMLA templates. So if you have been looking for a website that converts your psd to css here is the find. Now let your Photoshop skills flow without worrying about the css. Enjoy =):-)

Link To This Post
1. Click inside the codebox
2. Right-Click then Copy
3. Paste the HTML code into your webpage
codebox
powered by Linkubaitor
Monday, February 16th, 2009 Website reviews No Comments