This is my code below, it works when I run it on my localhost, but since I have uploaded it to my site via CPanel, it just loads the url www.wordle.net/advanced and shows a blank screen, any ideas would be greatly appreciated!!
$text = array_values($text[0]);
$text2 = implode(",", $text);
$finalText = strip_tags($text2);
?>
<form action="http://www.wordle.net/advanced" method="POST">
<textarea name="text" style="display:none">
<?php echo $finalText ?>
</textarea>
<input type="submit" name="submit" value="Submit"/></form>
</body>
</html>