1,154 reputation
1516
bio website sprain.ch
location Berne, Switzerland
age
visits member for 2 years, 10 months
seen 9 hours ago
stats profile views 46

Oct
5
comment Twig: in_array or similar possible within if statement?
I suppose it really depends on the context which way makes more sense, don't you think?
Sep
10
revised Mysql - How to get a row number after Order by?
added final solution
Sep
10
comment FOSUserBundle: Change Password within actual project
Thanks, I didn't know about subrequests! I will keep working on it and report back with status updates. Regarding FOSUserBundle, I did of course read the documentation but I am still a bit stuck on how to actually handle it.
Sep
9
comment Mysql - How to get a row number after Order by?
Depends a lot on how often you are calling those queries. As long as thinks work out, go this way.
Sep
9
comment Mysql - How to get a row number after Order by?
My bad, try again: SELECT rank, p_id FROM (SELECT @rank:=@rank+1 AS rank, p_id, userid FROM point_table, (SELECT @rank := 0) r ORDER BY points DESC) t WHERE userid = intval($sessionuserid);
Sep
9
comment Mysql - How to get a row number after Order by?
Define "not working" - what do you get? r and t are defining aliases for the tables which we are creating on the fly.
Sep
9
answered decoding Timestamps explicitly encoded in a filename
Sep
9
comment Mysql - How to get a row number after Order by?
Actually, there is. However it is actually running two queries in one which might slow down your performance. But give it a try! SELECT rank, p_id FROM (SELECT @rank:=@rank+1 AS rank, p_id FROM point_table, (SELECT @rank := 0) r ORDER BY points DESC) t WHERE userid = intval($sessionuserid);
Sep
9
comment Mysql - How to get a row number after Order by?
You query is only returning one entry because your looking for a specific user. This is something you didn't do in the example in your inital question. So either recalculate the rank regularly and save it to the database or query for all users and then find the one you're looking for in the result. The first way will probably be better. Consider giving your ranking a certain time lag, you probably don't really have the need to update it every second as you mentioned in a different comment.
Sep
9
comment Mysql - How to get a row number after Order by?
Can you show us your updated code and maybe even a few sample entries?
Sep
9
revised Mysql - How to get a row number after Order by?
added 3 characters in body
Sep
9
answered Mysql - How to get a row number after Order by?
Sep
9
answered Dynamic enlisting
Sep
9
asked FOSUserBundle: Change Password within actual project
Aug
19
comment Loading third party library: not found
Should have known that, definitely was blind to the obvious. Thanks!
Aug
19
accepted Loading third party library: not found
Aug
18
comment Backing up thousands of images in PHP?
Have you considered chopping up task into several script calls instead of backing up all files at once?
Aug
18
asked Loading third party library: not found
Aug
5
comment How to save a POST jpeg to a server using PHP that isn't coming from a html form?
Obviously, as your var_dump() didn't show any data_image field. You might have to get in touch with however is providing you with your data.
Aug
5
answered How to save a POST jpeg to a server using PHP that isn't coming from a html form?