Hello,
I get unexpected T_STRING error in my script it says on line 88
and here is the snipit of code:
<?php
include("db.php");
$result = mysql_query("SELECT name, username, password, email, banner, url, companyname, address, maxhitsout, description FROM merchants WHERE id='$id'");
list($id, $name, $username, $password, $email, $banner, $url, $companyname, $address, $maxhitsout, $description) = mysql_fetch_row($result);
print "
<form action=editmerchant3.php>
<table width=\"100%\" border=\"0\" cellspacing=\"3\" cellpadding=\"0\" height=10 bgcolor=#2061a2>
<tr>
<td><font size=\"2\" face=\"verdana\" color=\"#FFFFFF\">  Admin - Edit A Merchant</font></td>
</tr>
</table>
<table width=\"100%\" border=\"0\" bgcolor=\"#EAEAEA\">
<tr>
<td width=\"13%\">
<div align=left>Name:</div>
</td>
<td width=\"87%\">
<div align=\"left\">
<input type=\"text\" name=\"newname\" size=\"30\" value=$name>
</div><input type=hidden value=$id>
</td>
</tr>
<tr>
<td width=\"13%\" height=\"16\">Username: </td>
<td width=\"87%\" height=\"16\">
<input type=\"text\" name=\"newusername\" size=\"30\" value=\"$username\">
</td>
</tr>
<tr>
<td width=\"13%\" height=\"16\">Password:</td>
<td width=\"87%\" height=\"16\">
<input type="text" name=\"newpassword\" size="30" value=\"$password\">// line 88
</td>
Can anyone please help