Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Member Avatar for Aeterna

I'm trying to create a countdown timer that uses datetimes from a database. So far I have the endDate as a DateTime object. What I want to be able to do is pass this into javascript as a javascript DateTime, then find the difference between the endDate and Now, and …

Member Avatar for Airshow
0
218
Member Avatar for Aeterna

I'm writing a little script thats a countdown timer. What i want to do is be able to set a length of time like 3, 5, 7 days etc. So i will have [CODE] var dif = 3; var now = new Date(); var end = new Date(now.getFullYear(), now.getMonth(), now.getDay() …

Member Avatar for Airshow
0
171
Member Avatar for Aeterna

My website [url]http://animalcrueltyfacts.net[/url] is having serious issues with IE. These are not browser compatibility issues, and they are not isolated to my computer. No version of IE on any computer can load the server to my website. I have no idea whats causing this. The website works fine in other …

Member Avatar for compnutt
0
267
Member Avatar for Aeterna

My website [url]http://animalcrueltyfacts.net[/url] is having serious issues with IE. These are not browser compatibility issues, and they are not isolated to my computer. No version of IE on any computer can load the server to my website. I have no idea whats causing this. The website works fine in other …

0
66
Member Avatar for Aeterna

I want to select some rows from my database SELECT * FROM searches WHERE campaign_id = 49 Then insert all that data (except the autoincrementing id column) back into the database, changing "49" to "50" is that possible?

Member Avatar for griswolf
0
42
Member Avatar for Aeterna

[CODE]function getUsers(column, id) { $.get('userlist.php', {column: column, id: id}, function(output) { $("#userlist").html(output); }); setTimeout(getUsers(column, id), 5000); }[/CODE] userlist.php checks for users online. i want it to check every 5000ms (for example, doesnt have to be that) Firebug is giving me 'too much recursion' errors. I've used this exact code structure …

Member Avatar for Airshow
0
115
Member Avatar for Aeterna

can anybody help me with a mod_rewrite rule real quick? RewriteRule ^(.*) index.php?category=$1 [L] its working but my file data.php which is being loaded into index.php via jquery get isnt outputting anything and I think its being routed to index.php?category=data.php which is wrong obviously. so how can I redirect things …

Member Avatar for pritaeas
0
133
Member Avatar for Aeterna

select * from a where a.b_id = $b_id and select count(*) from c where c.a_id = a.id and select count(*) from d where d.a_id = a.id whats the proper way to write this?

0
58
Member Avatar for Aeterna

If this is my code how would I loop to the next dog of the current owner after the dog has been fed 3 times. [CODE]Foreach ($owners as $owner) { For($x=1;$x<=$NumOfDogs;$x++) { $dog = $dogs[$x]; shuffle($dogFoods); Foreach ($dogFoods as $dogFood) { For($y=1;$y<3;$y++) { Feed($dog, $dogFood); } } } }[/CODE]

Member Avatar for JugglerDrummer
0
79
Member Avatar for Aeterna

Rather than build in a proxy to my program I want to use it with my existing proxy switcher program Hide-My-IP. This program doesn't change the IE settings, but it makes all your browsers go through one of their IP addresses. IE, FF, etc all get their ip changed by …

Member Avatar for Teme64
0
143
Member Avatar for Aeterna

"Sorry, you can't do that right now." I'm testing my application which is a Twitter account manager, and I'm offering a feature of being able to create a new account right from the application. However, sometimes, usually after a few bouts of testing. Twitter gives me this error and its …

0
52
Member Avatar for Aeterna

How can my VB.net application interact with windows modal dialog boxes? For example when you click an HTML <input type=file> the dialog that opens is a windows form that isn't in my application, so how can I manipulate it?

Member Avatar for Aeterna
0
229
Member Avatar for Aeterna

I have datagridviews where I've removed the ability for users to edit them directly. I have made add and delete buttons for users to add rows and remove selected rows. Occasionally, and I'm not sure why, I get the "Prepare: CommandText..." error, as well as "Update requires a valid ___Command..." …

0
72