Bir deneme yaptım form ile ancak diğer sitede echo gözükmüyor

Gonder.html
 <form action="http://digersite.me/getir.php" method="POST">
<input type="text" name="text">
<input type="submit" name="submit" value="Başka siteye gönder">
</form>
getir.php

<?php
if ( !empty($_POST['submit'] && !empty($_POST['text'] ){
echo $_POST['text'];
}
?>
Edit: çalıştı