| bio | website | poste-certificate.it |
|---|---|---|
| location | Italy | |
| age | ||
| visits | member for | 3 years, 3 months |
| seen | 1 hour ago | |
| stats | profile views | 997 |
Make life a coding experience!
Now I use PHP and JS for my daytime job. I wish I had enought time to keep myself up to date and up to speed with at least JAVA.
I took part in realizing all the back end application to handle the orderds, contracts and invoices for a site that sells posta certificata per aziende.
- Languages I love most are C++ and JAVA.
- Languages I hate most are VB6 and VB.NET
- Wishes: one day to see PHP becoming more OO and with also operator overloading (it's a dream).
I started coding in BASIC since I was a 10 years old kid with a Commodore 64 and Apple IIe. During University they tought me C and C++ and JAVA and I really understood how much I love to code even a simple strlen function on my own. :)
|
Mar 21 |
comment |
HTML textarea ignores 1st new line character, why? It does not work on IE8, but works on Chrome 24, Safari and FF. I assume it's IE8 bug. |
|
Mar 21 |
comment |
HTML textarea ignores 1st new line character, why? It does not work on IE8, but works on Chrome 24, Safari and FF. I assume it's IE8 bug. |
|
Mar 21 |
comment |
HTML textarea ignores 1st new line character, why? The white space in the script renders the 1st line with a space. This is not good, data in textarea could be sent to server and they would be saved into DB with teh added space that nobody required. |
|
Mar 21 |
comment |
JavaScript for detecting browser language preference @Anzeo: low are chances of having you site visited by users that speak in one language, but install a browser in another language and later they also set another preferred language. As said by others there is no decent way, my answer is a simple short workaround for a task that usually does not end up into fatal errors. If you have to be absolutely sure of what language the user uses you could always ask him by adding on your site a select list and save its choice into a cookie. |
|
Mar 20 |
asked | HTML textarea ignores 1st new line character, why? |
|
Mar 18 |
awarded | Notable Question |
|
Mar 18 |
awarded | Notable Question |
|
Mar 11 |
awarded | Necromancer |
|
Mar 9 |
comment |
How to include config.php efficiently? @alex: I would use the more efficient dirname in place of realpath (that is very slow) unless you are afrid of symlinks |
|
Mar 8 |
comment |
Does using static methods and properties in PHP use less memory? @MathieuImbert: it's an interesting point, I'm wondering if it's possible by using .htaccess and suPHP to unload a module that is loaded in the main php.ini server file. I'm in a shared hosting environment, I can't not change the main php.ini file. |
|
Mar 8 |
comment |
Php email sent with issues on subject chars in Outlook only @ÁlvaroG.Vicario: thanks I solved all my issues using PHPMailer, SwiftMialer is a just piece of junk with a fency looking documentation. |
|
Mar 8 |
revised |
PhpMailer vs. Swiftmailer? added 3 characters in body |
|
Mar 8 |
comment |
PHPMailer or SwiftMailer? Completely changed my mind, PHPMailer is better, for details see stackoverflow.com/a/15074414/260080 |
|
Mar 8 |
revised |
PhpMailer vs. Swiftmailer? added 959 characters in body |
|
Mar 7 |
comment |
Php email sent with issues on subject chars in Outlook only @Álvaro G. Vicario: proper e-mail package like Swift Mailer (v 4.3.0.) fires a wonderful Notice: iconv() [function.iconv]: Wrong charset, conversion from windows-1252' to utf-8//TRANSLIT//IGNORE' is not allowed in \lib\classes\Swift\Mime\MimePart.php when attempting to use Windows-1252 charset |
|
Mar 5 |
comment |
Get first element of an array Isn't this wrong?! It works only if array keys are int, try doing list($firstItem) = array('key1' => 'value1'); and you will get an error Notice: Undefined offset: 0 |
|
Mar 5 |
comment |
Get first element of an array Wht not simply use current then? |
|
Mar 5 |
comment |
Does using static methods and properties in PHP use less memory? @MathieuImbert: could you explain when you say "if you don't use GD, don't load it". Do you mean not to load it at all the GD extension in php.ini configuration? |
|
Mar 5 |
comment |
Does using static methods and properties in PHP use less memory? More tests here: stackoverflow.com/a/3419411/260080 |
|
Mar 4 |
awarded | Popular Question |