file_get_contents($url) problem

I added a urlencode() to ensure your string is properly escaped, and your first example in the previous post works fine. This may solve your problems.

<?php

$str = urlencode("download moblileji now");
$url = "http://myurl/myfile.php?message=$str";
$string = file_get_contents($url); 
echo $string;

See http://au.php.net/manual/en/function.urlencode.php