Hi guys i have the following code and i can't understand why it give an error
syntax error, unexpected 'echo' (T_ECHO)
I have a variable:$Email=$_SESSION['Email'];
And i wont print it on my html table :
<tr>
<th>Email</th>
<td><?= echo $Email ?></td>
</tr>
I have alredy tryed everything, but it still don't work...I think that i am trying to print a variable with the wrong command, but i don't know any other way...