Posts by Tiago Diaz • 71 points
4 posts
-
2
votes0
answers31
viewsQ: Cycle2 Carousel and Bootstrap bug
I made a plunker so the guys can see the problem... Setting the col-xs-12 and col-md-3 (using the ability to auto-width from Bootstrap 3) it destroys with cycle2 making the size of the slides giant.…
-
2
votes1
answer71
viewsA: Doctrine2 using namespace error Composer
SOLVED The problem was with Autopload... I made a silly mistake, the solution was to put psr-4 instead of psr-0 in the autoload of Poser, after changing psr-0 to psr-4 worked all 100%m follows the…
-
2
votes1
answer71
viewsQ: Doctrine2 using namespace error Composer
Hello I am creating a file that serves as base class in Basetable.php Entities as follows: <?php namespace Entidades; use Doctrine\Common\Collections\ArrayCollection; /** * @MappedSuperclass */…
-
1
votes4
answers702
viewsA: What are the best practices of representing SQL within PHP code?
I used normal tabulated form, however today I have used the class "dibi" it is a wrapper and layer abbstraction database, extremely powerful, lightweight and useful... http://dibiphp.com The class…