You could either use a printing stylesheet, and hide what you dont want to print...
Or have a link for "Printable Version"
If you want the printable stylesheet... add something like this inside your css file.
These will only be used when printing, or using the print preview
@media print {
#divtohide, #div2, #div3{
display:none;
}
}
just wrap the data u want to hide in certain divs...
Not the best thing... cuz then u have alot of extra divs, but you can work with it... maybe assign it to a css class .hidemeonprint{} or something, and add that to ur existing divs u want to hide.... or td's if ur using tables