Posts by Bjverde • 57 points
6 posts
-
0
votes1
answer236
viewsA: What is the difference between Text Box and Input?
Pencil covers several frames. HTML, Desktop, Phone, etc. An input field is the generic name for several types. So I’ll explain using HTML, the input is the generic name. You need to enter the…
-
4
votes1
answer112
viewsQ: CSS, my class can inherit from Bootstrap
I have a system with old Look and Feel. The idea is to change to boorstrap. BUT with as little change as possible. Concrete example. The buttons use the fwButton css class. It would be possible to…
-
0
votes2
answers9506
viewsA: How to connect PHP to Sqlserver via PDO
Drive PDO sqlsrv does not work on Linux with PHP 5.6, in such cases use dblib. For PHP 7.0 or higher you can use sqlsrv Link Docker File Ubuntu 16.08 with PHP 7.0 and sqlsrv PDO…
-
0
votes3
answers2517
viewsA: How to connect PHP 5.6 to Sql Server 2008?
I can connect to Sql Server 2008 with: Debian 8 and PHP 5.6 use PDO with dblib drive Ubuntu 16.04 and PHP 7.0 using PDO with sqlsrv drive, if desired here is link to Dockerfile to assemble that…
-
0
votes2
answers362
viewsQ: How to connect PDO with named Sqlserver instances?
I can’t connect PHP 7.0.36, sqlsrv PDO drive on Ubuntu 16.04 on SQL Server 2012 when the database has a appointed body. When do I use the standard instance works. $conn = new…
-
1
votes1
answer91
viewsQ: How to mock the class without passing parameter
Using Phpunit I can mock a class and pass by parameter and test a method is case of selectById. But I can’t mock Acesso and test pessoaLogadaIgualPessoaAtividade. How to take the test of…