Im creating a php script,
basically in three steps
1. run MySQL query
2. MySQL result entered into array, all done within the query code
3. array result used for file_get_contents
$result = mysql_query("SELECT * FROM u8 LIMIT $srt, $mnt") or exit(mysql_error());
while ($row = mysql_fetch_assoc($result)) {$wrd[] = $row['wrd'];}
{
$menua .= "$wrd[0]";
}
echo "$menua <br>\n\n"; // output works
$trial .= file_get_contents("http://domain.com/smr/$menua");
I dont get any error or warning just this:
menuarguments