Jump to content

How To Fix Parse Error


refiking

Recommended Posts

Here is what the script returns:

 

Parse error: parse error, unexpected T_VARIABLE in /home/refiking/public_html/testing/go.php on line 4

 

Here is line 4:

 


fputs($url, "GET /$test?on_url=online&off_url=offline HTTP/1.0\n\n");

 

By the way, the script works fine if when I just typed in the name instead of $test.  So, I know it has something to do with how it reads $test.

Link to comment
Share on other sites

<?
$test = "johndoe"
// Connect to AOL server
$url = @fsockopen("big.oscar.aol.com", 80, &$errno, &$errstr, 3);

// Query the Server
fputs($url, "GET /$test?on_url=online&off_url=offline HTTP/1.0\n\n");

// See resultant page
while(!feof($url)){
$feofi++;
$page .= fread($url,256);
if($feofi > 10){
	$page = "offline";
	break;
}
}
fclose($url);

// determine online status
if(strstr($page, "online")){
echo "the user is online";
}else{
echo "the user is offline";
}
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.