php - On clicking a button on a web page, can a dynamic link be generated? can we navigate webpage to the dynamically generated link -
i new php , javascript programming have string can "abc" or "aac" or "aaa" etc based on inputs given user. after user clicks button(say submit) want generate dynamic link www.domain.com/abc or www.domain.com/aac based on string , navigate user generated link. possible? thank you
you can define function , set form action. taking user input each in function use header('location:your_site_url/'.$_get['user_input']); die;
redirecting user desired url.
hope helps.
Comments
Post a Comment