Now I have this message...
Warning: implode() [function.implode]: Invalid arguments passed in /public_html/libraries/joomla/database/database/mysql.php on line 534
Maybe is about the .htaccess? or sh404SEF because I deactivate sh404SEF and this warning appears
I don´t want to store the form fields in a database, so I don´t know why the form is trying to store the information, the autogenerated PHP code
In the DB Connection Tab, I select to the option "Enable Data storage:NO" but in the PHP autogenerated code looks like this
<?php
if($paramsvalues->dbconnection == "Yes"){
$row =& JTable::getInstance("facileforms_records", "Table");
srand((double)microtime()*10000);
$inum = "I" . substr(base64_encode(md5(rand())), 0, 16);
$_POST["recordtime"] = JRequest::getVar( "recordtime", date("Y-m-d")." - ".date("H:i:s"), "post", "string", "" );
$_POST["ipaddress"] = JRequest::getVar( "ipaddress", $_SERVER["REMOTE_ADDR"], "post", "string", "" );
$_POST["uid"] = JRequest::getVar( "uid", $inum, "post", "string", "" );
$post = JRequest::get( "post" , JREQUEST_ALLOWRAW );
if (!$row->bind( $post )) {
echo "<script> alert('".$row->getError()."'); window.history.go(-1); </script>\n";
exit();
}
if (!$row->store()) {
echo "<script> alert('".$row->getError()."'); window.history.go(-1); </script>\n";
exit();
}
}
?>