Todd Cary wrote:
Currently, I have a Link to show a PDF file
<? print('Click <a href="' . $url . $sfyc_race_schd_send . '" Name="Race Schedule" Target="_blank">here</a> to open the Race Schedule'); ?>
I want to replace it with a button and an OnClick()
<? print('<input type="button" name = "View Schedule" OnClick="">'); ?>
I cannot get the syntax correct for the OnClick. Is this the best way to use a button for the task?
Todd
Since this is a PHP mailing list, my JavaScript may be a bit off....
<input type="button" name="View Schedule" onClick="JavaScript:document.location="<?php echo ( $url ); ?>" />
And it was off....
<input type="button" name="View Schedule" onClick="JavaScript:document.location=<?php echo ( $url ); ?>" />
Damn adding extra quotes.
-- John C. Nichel KegWorks.com 716.856.9675 [EMAIL PROTECTED]
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php