vote up 0 vote down star

The following code:

<?php

if ($_SERVER['REQUEST_METHOD'] != 'POST'){
    $self = $_SERVER['PHP_SELF'];

?>

Generates this error:

Parse error: syntax error, unexpected $end in /home/idghosti/public_html/testground/mma/include/header.php on line 26

What is wrong with my code?

flag

69% accept rate
yikes, so many answers so fast – Ian Elliott Jul 8 at 15:12

5 Answers

vote up 5 vote down check

You are missing the closing brace "}" after the statement:

$self = $_SERVER['PHP_SELF'];

It should be:

<?php
if ($_SERVER['REQUEST_METHOD'] != 'POST'){
  $self = $_SERVER['PHP_SELF'];
}
?>
link|flag
vote up 1 vote down

You're missing a "}" before the end.

<?php
if ($_SERVER['REQUEST_METHOD'] != 'POST')
{
    $self = $_SERVER['PHP_SELF'];
} // This is missing
?>
link|flag
vote up 1 vote down

You are most likely missing a curly bracket.

Your code should be:

<?php
if ($_SERVER['REQUEST_METHOD'] != 'POST'){
  $self = $_SERVER['PHP_SELF'];
}
?>
link|flag
vote up 1 vote down

You need to close the curly bracket "}" before closing the php tag "?>"

link|flag
vote up 0 vote down

You got a curly bracket too much...

<?php
if ($_SERVER['REQUEST_METHOD'] != 'POST')
  $self = $_SERVER['PHP_SELF'];
?>
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.