Skip to content

Instantly share code, notes, and snippets.

@frejlev
frejlev / fixChar.php
Created February 7, 2013 16:47
fixChar method
public function charFix($text) {
return mb_convert_encoding($text,"HTML-ENTITIES","UTF-8");
}
<?php
/*
* Mysql database class - only one connection alowed
*/
class Database {
private $_connection;
private static $_instance; //The single instance
private $_host = "HOSTt";
private $_username = "USERNAME";
private $_password = "PASSWORd";