-
function convert_smart_quotes($string) {
//converts smart quotes to normal quotes.
$search = array(chr(145), chr(146), chr(147), chr(148), chr(151));
$replace = array("'", "'", '"', '"', '-');
return str_replace($search, $replace, $string);
}
October 28, 2010 No Comments
-
function convert_smart_quotes($string) {
//converts smart quotes to normal quotes.
$search = array(chr(145), chr(146), chr(147), chr(148), chr(151));
$replace = array("'", "'", '"', '"', '-');
return str_replace($search, $replace, $string);
}
October 27, 2010 No Comments
October 26, 2010 No Comments
October 25, 2010 No Comments
Easy peasy:
#!/bin/bash wget http://wordpress.org/latest.zip unzip latest.zip cp -rf ./wordpress/* ./
handy little bash script to install word press
-
Show All Products in a Magento Category by Default | Tom Robertshaw
October 24, 2010 No Comments
October 23, 2010 No Comments
October 22, 2010 No Comments
