Posts by Henrique Silva • 177 points
7 posts
-
0
votes4
answers175
viewsA: Comment element ID attribute
What I would do in that case is this: <input type="text" data-id="minhaId"> data-id would be a generic field with my id just to store it through html and when I needed to activate my id would:…
-
1
votes1
answer60
viewsQ: Values of $_REQUEST returning null
I got the following form that sends an array: Form: <form id="form-simulacao" action="controller.php"> <div class="col-md-3"> <div class="form-field"> <div…
-
1
votes0
answers180
viewsQ: Video Conferencing in the Browser
I need to develop a video conferencing system to run on browsers, so far I’ve discovered several video streaming providers, but it’s not what I need, I need any hint on the subject, so that I can…
-
0
votes0
answers736
viewsQ: New Wordpress does not load media
I am developing a theme in wp 4.4.2 and when trying to upload a photo to highlighted image of a post (thumbnails) I get the following screen: I put a square in red on the Oader that appears only to…
-
1
votes1
answer600
viewsQ: Handling of $http’s replay.get
Hello I’m looking for information in a local database with the following code: var app = angular.module('app',[]); app.controller('conexao',function($scope, $http){ $scope.names = [];…
-
6
votes2
answers913
viewsQ: $http.get with Angular JS
searching for data from an api through $http.get, but I find an error. My request within a service: app.service('pessoas',function($http){ this.getHumanos = function(callback){…
-
7
votes3
answers1639
viewsQ: Date format in an NF-e
I am developing from a screen that will generate an NF-e and at the time I went to work with the dates I discovered that they need to be sent in a specific format that I do not know or found…