HiI'm trying to incorporate (hack) a custom survey form into my osTicket installation, for visual consistency. I'm just using the following code based on the index page:require('client.inc.php');$section = 'survey'; // i changed this from 'home' (no effect)require(CLIENTINC_DIR.'header.inc.php');andrequire(CLIENTINC_DIR.'footer.inc.php');Inbetween I just have a vanilla HTML form, with the following action:<form action="surveysubmit.php" method="post">...(form fields)...<input type=submit value="Submit">However when I click the submit button, I just get the "please wait" popup, and then it reverts to the index page, instead of surveysubmit.phpI assume this has something to do with the main include files. Any idea how to prevent/suppress this behaviour?Note: I have the same header and footer in the results page, which seems to be causing the issue, however I need this for it to fit in with the rest of the site.Thanks!

Write a Reply...