Jump to content

Parse Error: Syntax Error, Unexpected T_Echo


AcEBALL23

Recommended Posts

I keep on getting errors after errors i tried to research this but i coudn't find anything plz help

here is my code:

 

 

for($num=1; $num<=50; $num++){

$prime=true;$num=16;

for($divisor=2;$divisor<$num;$divisor++){

if($num%divisor0) {

$prime=false;

break;

}

} $prime=true;

if($prime&($num!=1)

echo"$num\"<br>;

}

Link to comment
Share on other sites

What errors? Parse error, unexpected T_ECHO?

Probably, considering that's what the title says. Shows how much attention I pay to those things.

 

At the end there's an if block that's missing a closing ) and the

on the line below has to be inside the quotes (which aren't terminated either, thanks to the extraneous backslash).

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.