Hi,
sorry for this basic question, but I can't find a solution by myself !
Environment : Joomla 1.5.8
The form isap_test :
id <input type="text" name="isapid" maxlength="11" size="2"><br><br>
Name<input type="text" name="isapname" maxlength="60" size="40"><br><br>
info<input type="text" name="info" maxlength="10" size="10"><br><br>
<input type="submit" name="save">
Table jos_chronoforms_isap_test :
isapid INT(11) key
isapname varchar(255)
info varchar(255)
DB connection enabled
No additional code
After submit :
Form passed first SPAM check OK
Form passed the submissions limit (if enabled) OK
Form passed the Image verification (if enabled) OK
Form passed the server side validation (if enabled) OK
Form passed the plugins step (if enabled) OK
Debug End
_POST: Array ( [isapid] => 33 [isapname] => toto [info] => dur dur [save] => Soumettre la requête [f1864b4d92f030a59bf01421bde74bc3] => 1 )
database is not updated.
If I keep the chronoforms table structure it works, but I need only one record per user.
Any idea ? thanks
sorry for this basic question, but I can't find a solution by myself !
Environment : Joomla 1.5.8
The form isap_test :
id <input type="text" name="isapid" maxlength="11" size="2"><br><br>
Name<input type="text" name="isapname" maxlength="60" size="40"><br><br>
info<input type="text" name="info" maxlength="10" size="10"><br><br>
<input type="submit" name="save">
Table jos_chronoforms_isap_test :
isapid INT(11) key
isapname varchar(255)
info varchar(255)
DB connection enabled
No additional code
After submit :
Form passed first SPAM check OK
Form passed the submissions limit (if enabled) OK
Form passed the Image verification (if enabled) OK
Form passed the server side validation (if enabled) OK
Form passed the plugins step (if enabled) OK
Debug End
_POST: Array ( [isapid] => 33 [isapname] => toto [info] => dur dur [save] => Soumettre la requête [f1864b4d92f030a59bf01421bde74bc3] => 1 )
database is not updated.
If I keep the chronoforms table structure it works, but I need only one record per user.
Any idea ? thanks
Hi benech,
The default ChronoForms autogenerated code needs the extra columns, cf_id, ipaddress, etc. You can probably hack the Autogenerated code to remove those lines (but I'm not certain, it works differently in v3.0).
Bob
The default ChronoForms autogenerated code needs the extra columns, cf_id, ipaddress, etc. You can probably hack the Autogenerated code to remove those lines (but I'm not certain, it works differently in v3.0).
Bob
Hi Bob,
thanks for your quick answer,
It seems that Chrono Forms is mainly designed to send mails and store a log into the db, but not able to populate (without modify coding) a table freely designed.
I will search for another module.
Thanks again
thanks for your quick answer,
It seems that Chrono Forms is mainly designed to send mails and store a log into the db, but not able to populate (without modify coding) a table freely designed.
I will search for another module.
Thanks again
Hi benech,
Hmmm . . . it's mainly designed to make it easy to use forms in Joomla. And it will let you send the results in an email or update a table.
Editing the autogenerated code will take you all of 30 seconds. Adding the extra columns to your table maybe a minute . . .
And Max may have a better suggestion.
Bob
Hmmm . . . it's mainly designed to make it easy to use forms in Joomla. And it will let you send the results in an email or update a table.
Editing the autogenerated code will take you all of 30 seconds. Adding the extra columns to your table maybe a minute . . .
And Max may have a better suggestion.
Bob
Hi,
If the table has an auto increment PRIMARY key and you are connected to it then the save should work very fine without any hacks! so is isapid a primary and auto increment ?
Max
If the table has an auto increment PRIMARY key and you are connected to it then the save should work very fine without any hacks! so is isapid a primary and auto increment ?
Max
This topic is locked and no more replies can be posted.