Posts by lucas rafael • 11 points
2 posts
-
1
votes1
answer794
viewsA: How to run an external script from a Wordpress form?
You can leave this code in the same file or in a separate file. I advise to leave in a separate file the logic that is within the if, then you just give one include of the file within your if…
-
0
votes1
answer354
viewsA: How to sum array data in json specified by date
for ($i=0; $i < sizeof($arrays)-1; $i++) { for ($j=1; $j < sizeof($arrays); $j++) { if( ($arrays[$i]['data'] === $arrays[$j]['data']) && !isset($arrays[$i]['sum']) &&…