Image Placeholder
Posted by Cătălin on Mon, 2 Oct 2017Use as placeholders in your designs or code
Customize the size and the colour of the image like this: <img src="https://negraru.com/place?size=600x200&bg=e42e36&fg=fff&text=Nice+and+Red+PNG+600x200px" /> Sample:
Read More...code
Bootstrap 4 responsive utilities
Posted by Cătălin on Mon, 2 Oct 2017Bootstrap 4 .hidden-* classes were completely removed
With Bootstrap 4 .hidden-* classes were completely removed. Starting with v4-beta, you can combine .d-*-none and .d-*-block classes to achieve the same result. visible-* was removed as well; instead of...
Read More...code
MySQL update to remove whitespaces
Posted by Cătălin on Wed, 13 Sep 2017This is how you can replace spaces with MySQL update query
Replace spaces UPDATE `table` SET `col_name` = REPLACE(`col_name`, ' ', '') Remove all tabs characters UPDATE `table` SET `col_name` = REPLACE(`col_name`, '\t', '' ) Remove all new line characters ...
Read More...code
Google Chrome (ERR_EMPTY_RESPONSE)
Posted by Cătălin on Wed, 19 Jul 2017WHM/cPanel AutoSSL issue with Google Chrome (ERR_EMPTY_RESPONSE)
Today few clients complained about their websites not working in Google Chrome. It seems to be an issue caused by a recent EasyApache 4 update where cPanel included a newer version of OpenSSL to be used...
Read More...code
HTML Minifier
Posted by Cătălin on Fri, 14 Jul 2017HTML Minifier - Minify HTML and any CSS or JS included in your markup
This will do the magic: //start HTML Minifier function sanitize_output($html) { $search = array( '/\>[^\S ]+/s', // strip whitespaces after tags, except space '/[^\S ]+\/'...
Read More...code
Compare tables find and update in MySQL
Posted by Cătălin on Thu, 22 Jun 2017Compare two tables find and update only matching data in MySQL
Find: SELECT id, mailing FROM directory_list a JOIN email_temp b ON a.email=b.email; Update: UPDATE directory_list a JOIN email_temp b ON a.email=b.email SET mailing = concat(COALESCE(mailing,...
Read More...code