I make a simple app without any database in php .just simple post method when i write my input text field and submit it send me to another post and put that input data in that field where i want if work in xammp fine but on live server it show me nothing here is my codes.........
<form action='show.php' method='POST'>
<input type="text" size="30" value="Enter Your Course Code Like  
  'CS101'..." name="text" >
<button name="submit"></button>
</form>
and my show.php code is
<?php
if(isset($_POST['submit'])){
$N = $_POST["text"];
echo '<a href="http://website.com/media/movie/'.$N.' MP4/'.$N.'_movie.mp4" class="styled-button-1">'.$N.'_movie</a>';
}
?>
Where i am wrong?