Thanks. This is perfect.
On Jan 9, 2006, at 12:07 PM, John Nichel wrote:
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@xxxxxxxxxxxxxxxxxxxxxxxxxxx
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php