@agandrass you should use an API endpoint from your side.
You create a user and give an API token, then in your client's form post to your site given that token as part of the form.
Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.
Hi everbody! I am looking for a secure solution to store form data from one of my clients into my own Laravel driven database. Just like GetResponse does with custom forms. Please find below a example from GetResponse:
<form action="https://app.getresponse.com/add_subscriber.html" accept-charset="utf-8" method="post">
<!-- Email field (required) -->
email: <input type="text" name="email"/>
<!-- List token -->
<!-- Get the token at: https://app.getresponse.com/campaign_list.html -->
<input type="hidden" name="campaign_token" value="xxxxx" />
<!-- Subscriber button -->
<input type="submit" value="Subscribe"/>
</form>
Thank you very much for your help Andre
@agandrass you should use an API endpoint from your side.
You create a user and give an API token, then in your client's form post to your site given that token as part of the form.
Please or to participate in this conversation.