I have a txt file and want to read it. itcontains only one word.
I want to use it as a string for sql table name.
$f = file_get_contents("http://...../...../..../address.txt");
$sql = "insert into " + $f + "(x,y) values ('$x','$y')";
Unfortunately it doesn't work.. please help me!
Thanks.