Home

Location: Brazil
Contact: t [at] thomaz.org

Notes

======================================================================

Custom Classifieds script done in PHP, some bugs left

======================================================================

in php.ini change default upload_tmp_dir from C:\Windows\Temp to some other directory in htdocs like = "C:\htdocs\_temp" - solved permissions problem with uploaded file

======================================================================

PHP < 5.3.6 + PDO MySQL set charset(else PDO/PHP will not display accented chars from db correctly)

$dsn = 'mysql:host=localhost;dbname=testdb';
$username = 'username';
$password = 'password';
$options = array(PDO::MYSQL_ATTR_INIT_COMMAND => 'SET NAMES utf8');
$dbh = new PDO($dsn, $username, $password, $options);
======================================================================

in Notepad++, MENU>ENCODING>Encode in UTF-8 without BOM fixed whitespace/blank line problems when using php include()

======================================================================

Quick site to sell ebooks.