<divclass="wrap-contact100"> <formclass="contact100-form validate-form"method="POST"onsubmit="func();return false;"> <spanclass="contact100-form-title"> Send Us A Feedback </span>
<divclass="wrap-input100 validate-input"data-validate="Please enter your name"> <inputclass="input100"type="text"name="name"placeholder="Full Name"> <spanclass="focus-input100"></span> </div>
<divclass="wrap-input100 validate-input"data-validate = "Please enter your email: e@a.x"> <inputclass="input100"type="text"name="email"placeholder="E-mail"> <spanclass="focus-input100"></span> </div>
<divclass="wrap-input100 validate-input"data-validate = "Please enter your message"> <textareaclass="input100"name="feedback"placeholder="Your Feedback"></textarea> <spanclass="focus-input100"></span> </div>
<h4>Thanks For you Feedback PD9waHAKbGlieG1sX2Rpc2FibGVfZW50aXR5X2xvYWRlciAoZmFsc2UpOwovLyR4bWxmaWxlID0gJF9QT1NUWyJ0YSJdOwokeG1sZmlsZSA9IGZpbGVfZ2V0X2NvbnRlbnRzKCdwaHA6Ly9pbnB1dCcpOwokZG9tID0gbmV3IERPTURvY3VtZW50KCk7CiRkb20tPmxvYWRYTUwoJHhtbGZpbGUsIExJQlhNTF9OT0VOVCB8IExJQlhNTF9EVERMT0FEKTsKJGZlZWRiYWNrID0gc2ltcGxleG1sX2ltcG9ydF9kb20oJGRvbSk7CiRhdXRob3IgPSAkZmVlZGJhY2stPmF1dGhvcjsKZWNobyAiPGg0PlRoYW5rcyBGb3IgeW91IEZlZWRiYWNrICRhdXRob3I8L2g0PiIKCj8+CgoK</h4>
So once base64 decoded:
1 2 3 4 5 6 7 8 9 10 11
<?php libxml_disable_entity_loader (false); //$xmlfile = $_POST["ta"]; $xmlfile = file_get_contents('php://input'); $dom = new DOMDocument(); $dom->loadXML($xmlfile, LIBXML_NOENT | LIBXML_DTDLOAD); $feedback = simplexml_import_dom($dom); $author = $feedback->author; echo"<h4>Thanks For you Feedback $author</h4>"