I have a form that I want to populate with exixsting values from the database if the form has been previously completed. In the interests of expediancy, I just took the html I used to create the form and added a value=<?php echo Results->Value; ?> for each field.
Is there any performance impact on using this method as opposed to letting PHP generate the entire form using echo? Will PHP4 parse faster one way or the other? PHP3?
CGI vs Module? Thank you.
Randy