Forum Moderators: open
Thanks!
We've got a PHP Forum [webmasterworld.com] on WebmasterWorld. If you try PHP and run into a snag coding the form script, that's the place to ask.
Yes, Javascript can process forms - although that's far from a best practice in most cases. If you find you must go the Javascript route and you run into troubles, try our Javascript forum [webmasterworld.com].
You should always make a print command the user's choice with
<a href="#" onClick="window.print(); return false;">Print</a>
But the window.print() can be loaded with window.onload();
<script type="text/javascript">
window.onload=function() { window.print(); }
</script>