• Fabrik4.5.3 for J!5.3.0 and J!4.2+is out

    You must update from Fabrik4.5.1 if you are running Joomla!5.3.0

    See Announcements

Submit a form via a link

  • Views Views: 10,831
  • Last updated Last updated:
  • First you must edit your form and under the "form processing" tab - set the "spoof check" option to "no"

    Then you can build your link as follows:

    Code:
    index.php?option=com_fabrik&task=form.process&formid=1

    replace the 1 in "formid=1" with your form id.

    Then for each field you want to insert data into add '&tablename___elementname=value'

    e.g.

    Code:
    &contacts___name=rob

    Thus, for my example form my final 'add' link will look like this:

    HTML:
    <a href="index.php?option=com_fabrik&task=form.process&formid=1&contacts___name=rob">Add a contact</a>
Back
Top