I want to add a section in my php package to print the bill.Is it possible ??? By the way.From where I can get all the functions and its details in php ?
If you want to print a webpage refer a javascript function "window.print();" <input type=button name=print value=print onclick="javascript:window.print();">
Try this: var message = "Print this Page"; function printpage() { window.print(); } document.write("<form><input type=button " +"value=\""+message+"\" onClick=\"printpage()\"></form>");