Bill Gates new technical car

Bill’s company made software to run a car.

Bill was taking a test ride of the car. Suddenly a truck came from opposite side.

Bill pressed ctrl+b to apply brakes.
Continue reading

Posted in Fun | 1 Comment

Basic Customizing Topics in Joomla 1.5

Hello Joomla Frens,
Here i would like to post some basic questions which can be encounter while we r customizing website in joomla-

1. How to remove page title from the home page of the website?

To remove the title from being displayed on the homepage of thesite, we need to change a parameter setting in the front page component.
► First log into the administrative back end. Continue reading

Posted in Joomla, Programming | Leave a comment

Getting started with Flex and Zend Studio

In this post, I will show you how to install Flex Builder 3 together with Zend Studio for Eclipse.

Requirement

  • Zend Studio for Eclipse version 6.1.0 or later.
  • Adobe Flex Builder plug-in for Eclipse version 3.0.1 or later. Continue reading
Posted in Programming, Zend Framework | Tagged , , | Leave a comment

How to Set-up Zend Framework with Wamp

How to Set-up Zend Framework with Wamp -

In this post, i am going to guide you to set up zend framework in wamp.First download Zend Framework package full version from
http://framework.zend.com/ either zip or tar.gz (I downloaded the version ZendFramework-1.9.4). Now extract the zip file. Make a new folder in your server root folder ie,wamp/www. Name it Zend. And copy the library and bin folder from extract file to your new folder named Zend. Continue reading

Posted in Programming, Zend Framework | Tagged | Leave a comment

Show/Hide Div on Mouse Click-

Below is the simple example in which you can show/hide div by single mouse click-

<script language="javascript" type="text/javascript">
function showhidediv()
{
        if(document.getElementById('show').style.display == "none")
        {
            document.getElementById('show').style.display = "";
        }
        else if(document.getElementById('show').style.display == "")
        {
            document.getElementById('show').style.display = "none";
        }
}
</script>
<a style="cursor:pointer;" onclick='showhidediv()'> Show Div</a>
<div id="show" style="display:none">
      Hello this is a test
</div>
Posted in Javascript | Tagged | 1 Comment

Show/Hide Div Using javascript-

Below is the very  simple example in which you will get two link, one to show div content and another to hide div content using javascript.

<script language="javascript" type="text/javascript">

function hidediv(id)
{
      document.getElementById(id).style.display="none";
}

function showdiv(id)
{
      document.getElementById(id).style.display="";
}
</script>

<a href="javascript:hidediv('show')"> Hide Div</a>
<a href="javascript:showdiv('show')"> Show Div</a>

<div id="show" style="display:none">
      Hello, this is a simple example using javascript
</div>
Posted in Javascript | Tagged , , | Leave a comment

Steps to create Joomla1.5 Templates….

To create a basic template in joomla, create a new folder in the “templates” folder. Name this folder,
eg. mynewTemplate. Now create a files index.php and templateDetails.xml inside folder mynewTemplate
using Text editor.

To keep things organized, make 2 new folders called “images” and “css”. Inside the “css” folder create
a file called “style.css”. Continue reading

Posted in Joomla, Programming | Tagged , , | Leave a comment

Accessing session var in joomla1.5 set in External Script

In Joomla 1.5,  I have to create a script which creates a captcha and saves the code in a session variable.
By simply adding the following code below doesnot allow to access session variable in joomla,

//session_start();
//…….
//$_SESSION['captcha'] = $code Continue reading

Posted in Joomla | Leave a comment

What is trackback??How to create a Trackback for wordpress??

A trackback is a way to link to an article or a post on another blog . When you leave a trackback, it creates a reference to the original post that it is linked to, allowing you the freedom to comment on the post within your own blog. Continue reading

Posted in Wordpress | 3 Comments

Easy to get a cool FORM in joomla 1.5 frontend

I have previously used Facileform component of joomla t0 create a User friendly form. Unlike Facile form, i get to know the advance version of facileform, BREEZING FORM, for joomla 1.5.

With the help of breezing form you can create a frontend form to get the data from user. Continue reading

Posted in Joomla | Tagged , , | 2 Comments