0
Inside a WP I have a CF7 form and I need the fields (usually are [this way] as variable default in CF7) to be sent to an external PHP page that will receive these values through the link and write to the bank in another location. Something more or less like this:
- Form CF7 with data [name] [email] [address]
- Use the CF7 script or redirect field to capture these CF7 variables [name] [email] [address]
- Create the link http://meusite.com/received.php?nome=[name]&email=[email]&endereco=[address]
- Complete operation by sending the form and sending this link to an external PHP page that will write to another Mysql
--> important points: - I do not want to use the local plugin database; - I need to write to external BD (other hosting); - The script field can be used for the directing field already in CF7, but you need to pass these [variables] in the link;
Thank you very much for the indications ;)