Use decimal at it is more accurate for money value in MySQL. e.g. rounding etc. Using float will end up some inaccuracy of calculation.
PHP and CI library, plugin etc
- PHP to Excel
- Ez-Auth – CI user management and authentication
- Xajax – PHP code to easily use ajax
- zebra image – image manipulation -resize, crop, rename etc.
- ion auth – authentication library
- grocerycrud – CRUD library
ORM
If else shortcut
The general format
(condition) ? (true return value) : (false return value)
Example
echo ‘Based on your score, you are a ‘,($score > 10 ? ‘genius’ : ‘nobody’);
References:
http://us2.php.net/manual/en/language.operators.comparison.php#language.operators.comparison.ternary
Remove google account in android phone
You can remove any account and all information associated with it from your device, including email, contacts, settings and so on.
To remove a Google Account, touch its name under Settings > Accounts or Settings > Accounts > Google, then Menu > Remove account.
Add days to a date
$adate = '2013-12-10'; //can use Ymd or mdY. Can't use dmY. Can use dash or slash to separate $daystoadd = 7; $newdate = date('Y-m-d',strtotime($adate) + (24*3600*$daystoadd)); //the date format is for output |
Moving wordpress to different folder
Thing to update after moving the whole wordpress folder to new location.
1. In database – change to new path in wp_options and wp_postmeta
further reading here http://codex.wordpress.org/Moving_WordPress
Protected: Campus Management System
Product Life Cycle
- development
- bug fixing and support
- fine tuning to make all the modules faster, less errors
- revamping – UI, architecture. come out with totally new design for a better system
$agestr = ($age < 16) ? 'child' : 'adult';
equivalent to
if ($age < 16) {
$agestr = 'child';
} else {
$agestr = 'adult';
}
Bootstraps Tools
Visual Editor
- bootply.com – online visual bootstrap editor
- pingendo – free, native (download and install)
- pinegrow.com – paid (starts at usd49), native + online demo
- layoutit – free, online editor
- jetstrap.com – paid
Snippets, tools, themes etc.
- bootsnipp.com – snippets, form builder
- startbootstrap.com – theme and templates
Others
- bootstrap magic – change theme, color and other default look for bootstrap based on your preference
- codiqa.com – build mobile app easily. nice and easy interface
- x-editable – library to easily update data in-line without whole form submission
- bootbundle.com – theme, template, plugins etc. many sites on one.
- list of more plugins and tools
Some useful tools on bootstraps
Offline tool/desktop app
- pingendo (free)
- mobirise (free)
- bootstrap studio (usd25)