At first sorry to say
I m new here .......

Whats the problem about that ??.........Parse error: syntax error, unexpected $end in /home/.zerlina/gsmbangladesh/gsmbangladesh.com/vbseo.php on line 1097

Plz let me know about details.........

Help any One and ll be thankfull ..


Jr telecom

Recommended Answers

All 6 Replies

think it means that your script ended abruptly. PHP is probably expecting you to do something on the bottom of the script. Maybe missing a "}".

think it means that your script ended abruptly. PHP is probably expecting you to do something on the bottom of the script. Maybe missing a "}".

Thanks for ur reply....

What can I do And how can I fix it ....plz

post your code

This will happen anytime that you don't close a loop. For example something like:

<?php
if($this==$that){
echo "They are equal";
//loop was never closed
?>

Would cause this error.
The way to fix it is to find the open spot and close it:

<?php
if($this==$that){
echo "They are equal";
}//Now the loop is closed
?>

Thank u very much for ur quick reply....

Actually I dont hv much idea about that .......
so that I disturbing... I m regret for that..

Attach here if u get any missing plz correct for me ..

The bottom of your script is incomplete. It ends with:

if( ($fGvxm8_f4DlzWpub7u=='showthread.'.VBSEO_VB_EXT) && isset($_POST) && isset($_POST['excerpt']) && VBSEO_IN_TRACKBACK )
{
@define('THIS_SCRIPT', 'showthread');
include dirname(__FI

If you are going to fix this, you have to make sure that your braces are balanced. In other words, for every { the script must have a preceeding } to close it.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.