SyntaxFix
Write A Post
Hire A Developer
Questions
<td class="first"> <?php echo $proxy ?> </td> is inside a literal string that you are echoing. End the string, or concatenate it correctly:
<td class="first"> <?php echo $proxy ?> </td>
echo
<td class="first">' . $proxy . '</td>