CHeighlund
Programmer
I'm working on a set of reports, and my boss has requested that I create a visual matchup the lines between report item and associated score by using a chain of periods.
Here, might be easier to show this way:
All items and values are inside a table for formatting purposes.
The reports are supposed to be both web-viewable and print capable. However, the difference in resolution creates a problem between the two when it comes to keeping things neat. If I try to stick enough dots in to make it look good on the screen, it causes annoying wrap chains on the page. If set up for the printout, there's a gap of about a third of the screen between the last dot and the associated value on the monitor.
My question regarding this is: Is there some way to code in text in a php page where it will appear on the screen, but won't be shown when that page is printed?
Here, might be easier to show this way:
Code:
Before:
Report Item Item Value
Report Item Item Value
Report Item Item Value
Report Item Item Value
After:
Report Item......................... Item Value
Report Item......................... Item Value
Report Item......................... Item Value
Report Item......................... Item Value
The reports are supposed to be both web-viewable and print capable. However, the difference in resolution creates a problem between the two when it comes to keeping things neat. If I try to stick enough dots in to make it look good on the screen, it causes annoying wrap chains on the page. If set up for the printout, there's a gap of about a third of the screen between the last dot and the associated value on the monitor.
My question regarding this is: Is there some way to code in text in a php page where it will appear on the screen, but won't be shown when that page is printed?