Jump to content

[SOLVED] T_CONSTANT_ENCAPSED_STRING


Wibbs

Recommended Posts

Hey all, i'm new to php but i've been doing Java for 4 years and so far i'm really enjoying it.

 

I have an issue though, i keep getting the error:

 

Parse error: syntax error, unexpected T_CONSTANT_ENCAPSED_STRING in D:\wamp\www\test website\people.php on line 18

 

my code is below:

<?php

require "connect.php"'
$query = "select * from person";
$result = @mysql_query($query, $connection)
or die ("unable to perform query.<br /> $query<br/>"
.mysql_error());

?>

<html>
<body>
<h1>List all the people</h1>

<?php
while($row = mysql_fetch_array($result))
{ ?>
Name:  <?=$row[ 'name' ]?> Job: <?=$row[ 'job' ]?> <br />
<?php } ?>


</body>
</html>

Link to comment
https://forums.phpfreaks.com/topic/87956-solved-t_constant_encapsed_string/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.