Posts by Geovani Santos • 33 points
4 posts
-
2
votes0
answers466
viewsQ: PHP generate files . Dec/txt for DIMOB IRS
Does anyone know what the standards are or know PHP classes to create files .dec or .txt for the DIMOB software from Receita Federal?
phpasked Geovani Santos 33 -
0
votes2
answers773
viewsA: Include_once and right directories - php
Maybe this will help you. In php set_include_path() it checks the first path, and if it does not find it, check the following path, until it is either locate the included file or returns with a…
-
0
votes0
answers130
viewsQ: Doctrine ORM: How to register several times in the same table using beginTransaction()
How do I register in the same database table using beginTransaction(). Example: Registering various details of a product $entityManager->getConnection()->beginTransaction(); try { ... //…
-
1
votes1
answer509
viewsQ: How to fetch data from another entity using Doctrine 2
I have two entities a Product (id, id_category, name) and another Category (id, name), in the product entity I want to bring the category name by the product table id_category. There is a way to do…