Posts by Guilherme Viebig • 466 points
6 posts
-
1
votes1
answer436
viewsA: Symfony Single id is not allowed on Composite Primary key in Entity
Let @ORM\Id only on the primary key. For more reference on Doctrine field mapping and annotations, see Basic Mapping…
-
7
votes2
answers742
viewsA: Is it possible to integrate Paypal into my website without the user logging in or creating an account?
Yes, using the API Direct Payment…
-
2
votes5
answers259
viewsA: Login based on email domain
What you want to validate in the foreground is not the email user, but the domain itself. If the primary DNS is compromised everything is possible, so these validations are realized through TXT…
-
2
votes2
answers79
viewsA: PHP - online lambda functions
Unless you create a parser for before actually running the validated code you will have problems. The dynamic inclusion of code without rules or interfaces provides several problems and risks. What…
-
3
votes4
answers8540
viewsA: How to let bootstrap tab active after clicking on pagination?
Looking for the best implementation I found in stackoverflow for a need I had last week I came to this reply See the difference in the event shown and shown.bs.tab Bootstrap 2 // Javascript to…
-
6
votes1
answer1798
viewsA: How to make paging in Codeigniter using AJAX?
Use codeigniter pagination integrated with jquery. First add this javascript to your head: <script type="text/javascript"> $(function() { $("#ajax_paging a").click(function() { var url =…