1,043 reputation
35
bio website
location United Kingdom
age
visits member for 1 year, 6 months
seen Mar 18 at 15:08
stats profile views 75

Feb
20
comment PHP Session Variable Will Not Unset
@user What module hook are you using?
Feb
20
comment PHP Session Variable Will Not Unset
@Haim Drupal should handle session_start.
Dec
13
comment Insert Data in database
Make an ajax call to a server-side script. See: api.jquery.com/jQuery.ajax
Nov
15
awarded  Yearling
Nov
12
comment php loop - check if on last multiple before total number
So $cnt value never changes. :P
Oct
24
comment how to replace cell value with image if cell value equals x
Was just about to comment the same thing.
Oct
15
comment simultaneous data entry to multiple SQL tables from PHP
Of course you can. As @LastCoder mentioned, transactions would be preferential in this case to ensure data integrity.
Oct
15
comment Unable to link 'animated button' to php file for uploading a file
Unfortunately we arn't mind readers, code please.
Oct
9
comment Display days between one date and today
You need to convert the dates to a unix timestamp prior to performing the calculation.
Oct
8
comment Failed to open stream even though place exists
Point taken. It's always best practice to have a global include with a constant defined as the base path, either through as you suggested DIR or getcwd(). The majority of large applications follow this approach.
Oct
8
comment Failed to open stream even though place exists
I know of this constant, the majority of the time there is only a single application running on the server.
Oct
8
answered Failed to open stream even though place exists
Oct
4
comment PHP preg_replace, not replacing right value
Surely this will still work...
Oct
4
answered PHP preg_replace, not replacing right value
Oct
4
comment Wordpress posts not pulling content
Have you tried using get_the_content without do_shortcode, and changing the value of the more link text?
Oct
2
comment setInterval mouseout and mouseover
Makes more sense. :)
Oct
2
comment setInterval mouseout and mouseover
You could trigger the setInterval under $(document).ready and then immediately clear it.
Oct
2
comment Select partial column title in MySQL
You have more than one column representing a date?
Sep
27
answered How to convert array of objects to an array of a single property of that object in php?
Sep
26
comment Google Maps API Marker, Wordpress and jQuery
The icon property takes either a string or MarkerObject. Why would you have to load anything through Wordpress or PHP? From your code snippet it looks like your iterating through an array to generate multiple coordinates and icons...