Posts by wmengue • 163 points
5 posts
-
1
votes3
answers560
viewsA: Bootstrap tab panel - How to go to a specific tab?
You can do a treatment in your code by sending a parameter to the view that will determine the active tab. <li class="active"> The parameter will tell you when that class should enter or not.…
-
4
votes3
answers340
viewsA: Position caption above div
I made an example that is working, I used jQuery to do a trick and meet the need since the conventional methods of z-index do not work, it is not the most elegant, but it works. See the image below:…
-
2
votes1
answer74
viewsA: Questions with Dates less than 12/31/69 in PHP
Depending on the PHP version you use: $date = date_create($value[DATA_NASCIMENTO]); $objReturn['DADOS'][$key]['DATA_NASCIMENTO'] = date_format($date, 'd/m/y'); See if it returns correctly.…
-
1
votes1
answer711
viewsA: Digital signature with certificate
There is an example that explains this in the PHP manual using hash on the link: http://php.net/manual/en/function.openssl-verify.php See if it can help you, it explains how the method works, and…
-
0
votes1
answer1118
viewsQ: Connection Webservice SOAP HTTPS PHP ( Santander )
I am trying to connect to a SOAP webservice using a php client. The client I ride like this: $client = new SoapClient('https://urlwebservice?wsdl); When I call the function:…