Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have following process.php file:

<html>
<head>
<title> Form Processing  </title>
</head>
<body>
<?php
  //  print _r($_POST)
  $arr=array
  (
  "ana" => "ana123",
  "gogi"=>"2345",
  "vano"=>"3at4"
  );

  $username=$_POST['username'];
  $password=$_POST['password'];
  if(arr[$username] == $password){
  echo " you entered  correct input  for ana ";
  }
  else
  {
  echo " try again "; 

  }

  ?>
  </body>
  </html>

When i run this code,it wrote:

Parse error: syntax error, unexpected '[' in C:\xampp\htdocs\datuna\process.php
on line 17

but where is missed [ i could not understand,i am trying to check if user entered correct username and password, here is also this file if you need it:

<html>
<head>
<title>FORMS</title>
</head>     
<body>
<form action="process.php" method="post">
Username : <input type=text  name=username  value="" /> <br/>
Password : <input type=password   name=password value="" /><br/>
<input type="submit" name=submit value=submit />
</form>
</body>
</html> 
share|improve this question

closed as too localized by Juhana, Tim Post Jun 4 '12 at 7:36

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

3 Answers

up vote 6 down vote accepted

You forgot a $:

if( $arr[$username] == $password){
    ^
    |- here
share|improve this answer

change this line:

if(arr[$username] == $password){

to this:

if($arr[$username] == $password){
share|improve this answer
if($arr[$username] == $password){

The error info gives you the line of error happened, just check that line.

share|improve this answer

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