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>;

}

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).

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.