Posts by Jhon Mike • 116 points
3 posts
-
5
votes3
answers6502
viewsA: How to install Composer globally on linux?
First, download the installer of Composer in any folder: curl -sS https://getcomposer.org/installer | php Then use the command mv to move the Composer file to the folder where linux recognizes the…
-
2
votes3
answers218
viewsA: htmlentities() does not work
echo $_SESSION["recuperarInvalido"]; just remove "htmlentities()", as it was made to convert html to string, to literally show html on the front!
-
3
votes1
answer3999
viewsA: How to consume a SOAP Webservice with Angularjs?
'use strict'; angular.module('myApp').service('Soap', ['$q', '$http', function($q, $http) { this.execute = function(metodo, params) { var envelope = ''; var deferred = $q.defer(); if (params) {…