Not like any other post variables, file element information is posted as two dimensional array. So, getting post data for a file element can be accomplished as below. <?php…
Waterloo Math
Math Platform
Articles and updates about anything.
Not like any other post variables, file element information is posted as two dimensional array. So, getting post data for a file element can be accomplished as below. <?php…
The problem I had was that email with French subject was sent with no subject. Because subject field is one part of header in email, accented characters in header seemed to cause problem. First…
First of all, make sure if API access passcode under "administration -> account settings -> order settings" is generated and obtainable. Payment reports are retrieved by transaction dates. So, it…
For me, it was required to send a uploaded file on application server to web server So, I googled, tested and implemented this solution. Basically, this is not purely my work as usual as. First, make…
It is common to store numeric values on Varchar or non-numeric field for developer's convenience. However, it can cause a problem when sorting. For example, 10 comes prior to 9 when sorted. Here are…
First, try to go to the link as below. [code] http://localhost:631/printers/ [/code] If the link does not work, open terminal and type the command as below. [code] $sudo cupsctl WebInterface=yes…
A SELECT statement may include a LIMIT clause to restrict the number of rows the server returns to the client. In some cases, it is desirable to know how many rows the statement would have returned…
What is Strict Mode? Strict mode controls how MySQL handles invalid or missing values in data-change statements such as INSERT or UPDATE. A value can be invalid for several reasons. Why to Disable?…