Answers for "php parse error: syntax error, unexpected t_string on line 1"

PHP
0

parse error: syntax error, unexpected '<' in php

//Use proper fomat
<?php
  //your code
  
 ?>
Posted by: Guest on May-31-2021
0

php parse error: syntax error, unexpected t_string on line 1

//usually this means missing ' or " in a statement
echo 'xyz; //this will cause unexpected t_string error
echo 'xyz 'ax'';//this will cause unexpected t_string error
Posted by: Guest on August-06-2021

Code answers related to "php parse error: syntax error, unexpected t_string on line 1"

Browse Popular Code Answers by Language