22:16 < ardnew> and in this single script, you generate a simple html document with a header, footer, and body 22:16 < ardnew> for example, the html, head tags in the header 22:17 < ardnew> the ending body and html tags in the footer 22:17 < ardnew> and in the body, you generate an HTML input form 22:17 < ardnew> where the user can type stuff into the form 22:17 < ardnew> awith a submit button 22:17 < ardnew> when the user hits submit, it calls the same welcome.php, and check if anything was submited from the input form 22:18 < ardnew> if something was submitted, print what the user input 22:18 < ardnew> otherwise, regenerate the input form - 22:19 < ardnew> its good practice 22:19 < ardnew> from there, you can generalize the process 22:19 < ardnew> and have separate scripts for header/footer 22:19 < ardnew> so all your pages have the same layout 22:19 < Pass> hrm 22:20 < ardnew> and the input form could change from just a printing process, to maybe a login routine 22:20 < ardnew> where it checks if the login infoormation is correct, and stores a cookie on the user machine 22:20 < ardnew> and now the user is "logged in" 22:20 < Pass> that'll be a bit tougher. 22:20 < ardnew> right