Hi all
I couldn't find any posts about getting clean urls, like this www.mysite.com/myforms/apply/ instead of www.mysite.com/myforms/view.php?id=1.
I would like to add this functionality.
I plan on adding a db table called urls with fields form_id and url_segment and then adding php code that turns '/apply/' into 'id=1' and vice versa.
I think i will be able to add the insert statement when you create a new form but I'm a little unsure whether it's possible to somehow make the conversion in a separate file where I just put $input_array['form_id'] = 1, for example?
I know it's possible to make rewriting in server setup and .htaccess file but I would like to make this functionality dynamic. What are you're thoughts about this?
Thanks for an otherwise great app!