Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

t variable error meaning in php

//Parse error: syntax error, unexpected T_STRING, expecting T_VARIABLE
//Occurs when there is a variable that is not allowed. e.g Missed a 
//($)dollar sign before the variable name or (;)semcolon at the end.

<?php
  $a = 5
  $b = 7;        // Error happens here.
  print $b;
?>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #variable #error #meaning #php
ADD COMMENT
Topic
Name
2+8 =