So I'm displaying a list of courses. Each course has several dates. Next to each course/date combo is a "register" button. This, when clicked, leads to a simple form built in Chronoforms (NOT a joomla registration form) that gathers their contact info which is then emailed to the site admin.
On this form, I want to prepopulate the Course Name and Course Date fields with the info from the course listing page. The info will be passed either through the Querystring or through form post data. Is this as simple as doing a
or is there something specific to Chronoforms I need to know?
On this form, I want to prepopulate the Course Name and Course Date fields with the info from the course listing page. The info will be passed either through the Querystring or through form post data. Is this as simple as doing a
<input type="text" name="className" value="<?php echo $_GET["className"]; ?>" />
or is there something specific to Chronoforms I need to know?