Hi, I'm with WordPress at all. Help advice how to implement the following. There is a site on WordPress and there is a form for contact. After entering this form, the user needs to send a request to another server with this data. That is, the user entered the data and we send it to another server. I wrote a lot on Yii2, Laravel and my framework thinking does not make it clear in WordPress logic. Tell me how it can be implemented, where at least to find the files with the processing of the contact form that would add the code to send to another server
Form Code:
<form class="et_pb_contact_form clearfix" method="post" action="http://linkdnetwork.com/contact/"> <p class="et_pb_contact_field et_pb_contact_field_0 et_pb_contact_field_half" data-id="first name" data-type="input"> <label for="et_pb_contact_first name_1" class="et_pb_contact_form_label">First Name</label> <input type="text" id="et_pb_contact_first name_1" class="input" value="" name="et_pb_contact_first name_1" data-required_mark="required" data-field_type="input" data-original_id="first name" placeholder="First Name"> </p> <p class="et_pb_contact_field et_pb_contact_field_1 et_pb_contact_field_half et_pb_contact_field_last" data-id="last name" data-type="input"> <label for="et_pb_contact_last name_1" class="et_pb_contact_form_label">Last Name</label> <input type="text" id="et_pb_contact_last name_1" class="input" value="" name="et_pb_contact_last name_1" data-required_mark="required" data-field_type="input" data-original_id="last name" placeholder="Last Name"> </p> <p class="et_pb_contact_field et_pb_contact_field_2 et_pb_contact_field_last" data-id="company/organisation name" data-type="input"> <label for="et_pb_contact_company/organisation name_1" class="et_pb_contact_form_label">Company/Organisation Name</label> <input type="text" id="et_pb_contact_company/organisation name_1" class="input" value="" name="et_pb_contact_company/organisation name_1" data-required_mark="required" data-field_type="input" data-original_id="company/organisation name" placeholder="Company/Organisation Name"> </p> <p class="et_pb_contact_field et_pb_contact_field_3 et_pb_contact_field_last" data-id="website url (if applicable)" data-type="input"> <label for="et_pb_contact_website url (if applicable)_1" class="et_pb_contact_form_label">Website URL (if applicable)</label> <input type="text" id="et_pb_contact_website url (if applicable)_1" class="input" value="" name="et_pb_contact_website url (if applicable)_1" data-required_mark="required" data-field_type="input" data-original_id="website url (if applicable)" placeholder="Website URL (if applicable)"> </p> <p class="et_pb_contact_field et_pb_contact_field_4 et_pb_contact_field_half" data-id="email" data-type="email"> <label for="et_pb_contact_email_1" class="et_pb_contact_form_label">Email</label> <input type="text" id="et_pb_contact_email_1" class="input" value="" name="et_pb_contact_email_1" data-required_mark="required" data-field_type="email" data-original_id="email" placeholder="Email"> </p> <p class="et_pb_contact_field et_pb_contact_field_5 et_pb_contact_field_half et_pb_contact_field_last" data-id="phone" data-type="input"> <label for="et_pb_contact_phone_1" class="et_pb_contact_form_label">Phone</label> <input type="text" id="et_pb_contact_phone_1" class="input" value="" name="et_pb_contact_phone_1" data-required_mark="required" data-field_type="input" data-original_id="phone" placeholder="Phone"> </p> <p class="et_pb_contact_field et_pb_contact_field_6 et_pb_contact_field_last" data-id="preferred method of contact" data-type="input"> <label for="et_pb_contact_preferred method of contact_1" class="et_pb_contact_form_label">Preferred Method of Contact</label> <input type="text" id="et_pb_contact_preferred method of contact_1" class="input" value="" name="et_pb_contact_preferred method of contact_1" data-required_mark="required" data-field_type="input" data-original_id="preferred method of contact" placeholder="Preferred Method of Contact"> </p> <input type="hidden" value="et_contact_proccess" name="et_pb_contactform_submit_0"> <input type="text" value="" name="et_pb_contactform_validate_0" class="et_pb_contactform_validate_field"> <div class="et_contact_bottom_container"> <button type="submit" class="et_pb_contact_submit et_pb_button">Submit</button> </div> <input type="hidden" id="_wpnonce-et-pb-contact-form-submitted" name="_wpnonce-et-pb-contact-form-submitted" value="3ad4ba832a"><input type="hidden" name="_wp_http_referer" value="/contact/"> </form>
wp_remote_post()- KAGG Designcontactbut in the wp_content file ...> there is no contact file in the theme folder - Mike Kaharlykskiy