Php alert and window location href
You can review the following code block (window.location.href) to make a jquery alert operation and then a redirect in your php document.
<?php
echo "<script>
alert('Your Request Has Arrived We Will Return To You As Soon As Possible');
window.location.href='index.php';
</script>";
?>