0
votes
PHP: $_SESSION - What are the pros and cons of storing temporarily used data in the $_SESSION variable
This is a fairly common thing to do, and the session is generally going to be faster than continuous database hits. They're also reasonably secure, as the PHP devs have worked hard to prevent Sess …
0
votes
Filling PDF Forms with PHP
We use PDFLib at work. The paid version isn't very expensive, and there is a more limited open source edition, if you are unable to shell out fo …
0
votes
How do you manage api keys
I wouldn't just use user submitted data, as that can create a situation where API keys are guessable. Generally, I take some data that is generated by the user, and then combine it with some data t …
1
vote
JQuery $.ajax “async: false” bug?
You're encountering a scoping problem here. The URL variable in your JS code is declared as via the var keyword inside the scope of the download function. This means that only code inside the downl …
