|
Posted by John Nichel on 01/09/06 20:07
Mike Tuller wrote:
> I am drawing a blank on how to go about doing this for some reason. I
> have a page that pulls info from a database, and I want to have a
> version for viewing, and a version fro printing. Since the data is
> dynamic, I need to keep the data, but be able to switch the stylesheet.
> Can someone give me a push in the right direction as to how they would
> go about this?
>
<a href="<?php echo ( $PHP_SELF ); ?>?print=y">Print This Page</a>
<?php
if ( isset ( $_GET['print'] ) && $_GET['print'] == "y" ) {
// do the printing stuff
} else {
// do the regular display stuff
}
?>
--
John C. Nichel IV
Programmer/System Admin (ÜberGeek)
Dot Com Holdings of Buffalo
716.856.9675
jnichel@dotcomholdingsofbuffalo.com
Navigation:
[Reply to this message]
|