Posts by William Correa • 36 points
3 posts
-
2
votes1
answer93
viewsA: Line Chart being populated only with last record only in while/php
My implementation for this problem by following the same basic commands described would be something like: https://gist.github.com/wilcorrea/797500f5fed2f8e27bd8a6cf0c6d1e68 <?php // JS property…
-
0
votes1
answer177
viewsA: Readfile function by dropping PHP session
Have you tried using a different strategy to read the file? $fp = fopen("{$file}", "r"); fpassthru($fp); fclose($fp); Maybe it solves some limitation regarding the character overload readfile tries…
phpanswered William Correa 36 -
0
votes3
answers215
viewsA: Project Improvement in PHP
Are you creating a pattern or want to follow a pattern? Before thinking about the code we have to think about the architecture of the project. Although you say that there is no problem of logic this…