Posts by Pedro Chagas • 66 points
2 posts
-
2
votes1
answer1197
viewsA: How do you use the Angular . run directive?
var app = angular.module('aplicacao', ['highcharts-ng']); app.run(function($rootScope) { ... }); Explaining: var app = angular.module('aplicacao', ['highcharts-ng']); Creates an angular module…
angularjsanswered Pedro Chagas 66 -
3
votes1
answer171
viewsA: Doubt with checkbox and PHP
I need to create a field for each checkbox in the bank or I can record every result together in a single field, such as an array? I wouldn’t do either: I would create a table A containing 3 fields:…