37,215 reputation
22158
bio website goleztrol.wordpress.com
location Netherlands
age 35
visits member for 2 years, 6 months
seen yesterday
stats profile views 1,451

Delphi, Oracle, PHP, Javascript, MySQL, Arduino


May
11
comment css rule skipped by browser
We all have that problem sometimes. :)
May
11
answered css rule skipped by browser
May
11
awarded  Nice Answer
May
10
comment Oracle TimeStamp update/insert year interpret
Wouldn't it be easier to try than to ask here? SELECT to_timestamp('01-01-99 12:00 AM', 'MM/DD/YY HH:MI AM') FROM DUAL
May
6
comment Can't pass file path to a Batch file
Nice one. It does make more sense that the program passes the filename in the startup parameters.
May
5
answered Can't pass file path to a Batch file
May
4
comment How to find Subnets and Hosts from given IP
+1: 255.255.252.0 = 11111111 11111111 11111100 00000000
May
2
comment List of months between two dates, with years in oracle
A list of months, or a sum of hours? Your question is ambiguous. B.t.w., why are you storing month year and hours in different columns? A date column can contain a full date and time.
Apr
30
comment MySql query join return result with empty column
@RelevantUsername That's why they invented left joins in about 1986 or so.
Apr
30
answered MySql query join return result with empty column
Apr
27
comment Count ?var in PHP url as true
To me it sounds exactly what OP is asking about.
Apr
26
comment Getting divide by zero error
@user1677027 Sounds like a different problem. Please create a new question.
Apr
26
comment Is php object-oriented?
@Esailija Your first argument is about the structure of an application. The fact that you only need one instance most of the time doesn't mean it's not OOP. It depends on the application structure, and that's not really different from, say, Ruby. If you have a webshop, for instance, then a list of products will probably translate to a list of product instances.
Apr
26
comment Getting divide by zero error
Yeah, I don't know the motivation behind that, and just copied the exact piece from the question.
Apr
26
answered Getting divide by zero error
Apr
26
comment Is php object-oriented?
@Esailija singletons are glorified namespaces, as are static classes, and I can see where you are going with the 'primitives' argument. But how are regular object instances in PHP different from object instances in C# or Ruby?
Apr
24
awarded  Enlightened
Apr
24
awarded  Nice Answer
Apr
23
revised Emulate goto functionality in PHP 5.2 - maybe better approach?
added 1 characters in body
Apr
23
comment Emulate goto functionality in PHP 5.2 - maybe better approach?
Here is a great explanation by Dijkstra that even suggests it has been frowned upon by some since 1959. As more control flow statements arose, there's even less need for goto. It may have specific uses when optimizing some low level, time critical code, but there's absolutely no reason to use it in PHP and I have yet to see the first example where goto would be better than any other solution.