-1

im just wondering if im going to search a data then will print only the table not including the search box and the submitt button. it is possible to do that?

EL Gao
  • 1
  • 3

1 Answers1

0

Yes, no PHP or JavaScript required, just CSS: You provide a print style sheet that hides all elements except the ones you want to print:

@media print {
    /* ...these rules only apply when printing, use them to hide search boxes
       and such... */
}
T.J. Crowder
  • 1,031,962
  • 187
  • 1,923
  • 1,875