虽然Runnung代码的抛出错误可以任何人帮助
Parse error: syntax error, unexpected '' (T_ENCAPSED_AND_WHITESPACE), expecting identifier (T_STRING) or variable (T_VARIABLE) or number (T_NUM_STRING) in C:\xampp\htdocs\moduletwo\personal_view.php on line 64
码
<div class="table-responsive">
<table class="table">
<tbody>
<tr>
<th>Sap Id :</th>
<td><?php echo ". $row['sap_id'] .";?></td> //line 64
</tr>
<tr>
<th>First Name</th>
<td><?php echo ". $row['first_name'] .";?></td>
</tr>
答案 0 :(得分:0)
您已将变量声明为字符串。 请检查以下内容:
<tbody>
<tr>
<th>Sap Id :</th>
<td><?php echo $row['sap_id'];?></td> //line 64
</tr>
<tr>
<th>First Name</th>
<td><?php echo $row['first_name'];?></td>
</tr>
变量不应该在“..”之内,字符串应该。