Author Archive

While doing a new project on Wordpress, I come across a situation which required a custom menu bar to be showed inside page content. I can’t make it hard coded because the client needs the dashboard edit page option for that page to update the content. I thought there should be a plug-in to help [...]

  • Share/Bookmark

I will show you what I did in one of my recent project, when our client ask us that if it is possible to add a custom post type for their client details with their required fields. They also wanted to show the data in a table structure.
You can see the final result page here, [...]

  • Share/Bookmark

This PowerPoint presentation showcases basic features of WordPress. To download the tutorial please click on the link below.
http://blog.codez.in/post-files/wordpress-admin-panel.pptx

  • Share/Bookmark
Tags:

If you want to create your own website for free, there is no match for byethost.com.  It will give you a hosting space and sub domain name for free with the following features. Your website domain name will be a sub domain of byethost. Means you will get your website URL as “yourdomainname.byethost.com”.

Byethost free hosting [...]

  • Share/Bookmark
Tags:

This is  a PowerPoint presentation regarding a simple yet effective way to manage your projects. It discusses mainly about-

Back Up of the projects
How to maintain Day to day progress report of the project you/the team are working on

To download the PowerPoint presentation please click on the link below-
http://blog.codez.in/post-files/Organizing Your Project.pptx

  • Share/Bookmark
Tags:

Until now, there has never been a standard for showing video on a web page.
Today, most videos are shown through a plugin (like flash). However, not all browsers have the same plugins.
HTML5 specifies a standard way to include video, with the video element.
Currently, there are 3 supported video formats for the video element Ogg , [...]

  • Share/Bookmark

This is a presentation regarding Internet Marketing. It is a compact presentation that discusses the roles of SEO, Link Exchange and many other important factors of successful internet marketing.
Click the link below to download the PowerPoint Presentation.
http://blog.codez.in/post-files/Internet Marketing Presentation.ppt

  • Share/Bookmark
Tags:

If you are looking for a PHP short code to connect to your MySql database, please check out the following code for PHP/MySql database connectivity. This is simplest way to connect to a MySql database using PHP.
<?php
$link = mysql_connect(‘host-address’, ‘mysql_user’, ‘mysql_password’);
if (!$link) {
die(‘Not connected : ‘ . mysql_error());
}
// assume “database-name” as [...]

  • Share/Bookmark
Tags:

If you want to hide a specific div on a specific page of your website, you can do it with JQuery, using the below code.
Example: if your page URL is “http://www.example.com/about.php”
The first block of code will give you “about.php” from your full URL and store it in the variable called “current_page_name”.
Then in the second block [...]

  • Share/Bookmark
Tags:

Last week while I was working on an auction management project, I faced a time zone problem. The problem was that my web server was in USA and I have to manage online auction in India. So when I gave an auction its Start Date and End Date, it stored Indian time in the database, [...]

  • Share/Bookmark