Hello , Today I am writing some mistakes we have done for my Event module Details…
Category: Uncategorized
read contracts from android phone
//http://www.technotalkative.com/android-fetch-inbox-sms/ //Code Cursor phones = getContentResolver().query(ContactsContract.CommonDataKinds.Phone.CONTENT_URI, null,null,null, null); while (phones.moveToNext()) { String name=phones.getString(phones.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME)); String phoneNumber Details…
Random with Yii2
##for gridview widget #conroller
1 2 3 4 5 6 7 8 9 10 11 12 |
public function actionIndex() { $data = [ ['id' => 1, 'name' => 'name 1'], ['id' => 2, 'name' => 'name 2'], ['id' => 100, 'name' => 'name 100'], ]; $dataProvider = new ArrayDataProvider([ 'allModels' => $data]); return $this->render('index', array('dataProvider' => $dataProvider)); } |
and #view
1 2 3 4 5 6 |
<?php use yii\grid\GridView; echo GridView::widget([ 'dataProvider' => $dataProvider, ]); ?> |
vertx hello world in intellij idea
Vertex is java’s micro framework for especial for api driven work. Create a project new Details…
Install Yii with composer
TO try new PHP framwork yii you need to download composer.
Dependency Injection with laravel
This i called table data gateway pattern where a tables responsibility is handled by a Details…