Remove unwanted garbage

it used to be NBSP with latin1 encoding, but now it's just some grabage. just drop it, use plain SPACE
This commit is contained in:
Elan Ruusamäe 2013-11-09 14:22:45 +02:00
parent 468218baba
commit 866098534f
1 changed files with 2 additions and 2 deletions

View File

@ -27,8 +27,8 @@ $mail->Mailer = "smtp";
@MYSQL_CONNECT("localhost","root","password");
@mysql_select_db("my_company");
$query<EFBFBD> =<3D>"SELECT full_name, email,<2C>photo<74>FROM employee<65>WHERE<52>id=$id";
$result<EFBFBD>=<3D>@MYSQL_QUERY($query);
$query = "SELECT full_name, email, photo FROM employee WHERE id=$id";
$result = @MYSQL_QUERY($query);
while ($row = mysql_fetch_array ($result))
{