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:
parent
468218baba
commit
866098534f
|
|
@ -27,8 +27,8 @@ $mail->Mailer = "smtp";
|
||||||
|
|
||||||
@MYSQL_CONNECT("localhost","root","password");
|
@MYSQL_CONNECT("localhost","root","password");
|
||||||
@mysql_select_db("my_company");
|
@mysql_select_db("my_company");
|
||||||
$query<EFBFBD> =<3D>"SELECT full_name, email,<2C>photo<74>FROM employee<65>WHERE<52>id=$id";
|
$query = "SELECT full_name, email, photo FROM employee WHERE id=$id";
|
||||||
$result<EFBFBD>=<3D>@MYSQL_QUERY($query);
|
$result = @MYSQL_QUERY($query);
|
||||||
|
|
||||||
while ($row = mysql_fetch_array ($result))
|
while ($row = mysql_fetch_array ($result))
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue