Posts by DawTaylor • 7 points
4 posts
-
-1
votes1
answer84
viewsA: Domain Multiplus with Codeigniter
You can do this using .htaccess. Then you need to treat this in Code Igniter. Options +FollowSymLinks RewriteEngine on # # Redirecionando o domínio para a pasta correta # # Regra para cada domínio,…
-
-1
votes3
answers1005
viewsA: Foreach by reference or by value?
When you work with value you have a new instance of the array. When you work with reference, you modify the original array. Basically, when you use the array by value you have a copy of that valid…
-
0
votes2
answers77
viewsA: Variable returning Undefined
You want to do the independent update if there has been a change in the data or not, correct? In that case you just need to do the update without going through any logical test. $stmtSaveAddress =…
-
1
votes1
answer91
viewsA: Mysql transaction error in php
The FK error does not necessarily indicate that the first Insert did not occur, but rather that FK was not found. After running the first Insert you need to store the ID generated in that Insert in…