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
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
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
In this post, I will show you how to install Flex Builder 3 together with Zend Studio for Eclipse.
Requirement
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
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>
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>
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
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
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
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
Bad Behavior has blocked 53 access attempts in the last 7 days.