I am trying to create a chrono form which will echo the text for a CSV file. Everything works perfectly if I run the code except for the fact that Chrono inserts the <form ...> tag automatically at the start. My code is as follows:
I need to disable the auto-generated form tag. Is there a way to do this? Any insight will be greatly appreciated.
<?
echo "namespace,className,summary\r\n";
echo "sohail,shaikh,great\r\n";
?>
The Chrono form above outputs the following:<form name="ChronoContact_test" id="ChronoContact_test" method="get"
action="index.php?option=com_chronocontact&task=send&chronoformname=test" >
namespace,className,summary
sohail,shaikh,great
I need to disable the auto-generated form tag. Is there a way to do this? Any insight will be greatly appreciated.