Tizag.com Webmaster Tutorials - A collection of webmaster tutorials from HTML to PHP.

Wednesday, June 17, 2009

MouseOver and MouseOut in JavaScript

<script type="text/javascript">
function mouseOver()
{
document.getElementById("b1").src="wp-includes/images/readmore_big.jpg"
}
function mouseOut()
{
document.getElementById("b1").src="wp-includes/images/readmore_big_blur.jpg"
}
</script>


<div align="right">
<a href="http://www.iirgroup.com/researchoracle/viewreport/show/25102" target="_blank" onmouseover="mouseOver()" onmouseout="mouseOut()">
<img border="0" alt="Read More Reports on researchoracle.com" title="Read More Reports on researchoracle.com" src="wp-includes/images/readmore_big_blur.jpg" id="b1" /></a>  
</div>

Tuesday, June 2, 2009

PDF document through PHP Script

http://www.esnips.com/doc/3ce5af30-0783-47cb-9932-5d75e08dbcfa/fpdf16

This Link will download a tutorial which will allow to create PDF documents through PHP script without using any libraries.