I have made a personality test. It is a set of multiple choice questions that when the user submits, gives a personality description as output.
The test questions are placed in a Joomla "Article", so the owners of the test can easily change them, and the output is then via the form handle passed to an external php script. Like this:
<form name="name" action="score.php" method="post">
Now a strange thing happens. When the owners of the test change something in the test questions, and save, the action attribute falls out. This causes the test to reset itself.
The form handle then looks like this:
<form name="name" method="post">
This has happened over and over again, even with multiple instances of the test. I cannot find out what this is. Does Joomla do something weird with attributes like this?