Search found 180 matches
- Sun Dec 29, 2013 4:25 pm
- Forum: Older Browser MMO Videos
- Topic: Need help with unique table
- Replies: -1
- Views: 2544
Re: Need help with unique table
Try adding an ID column, make it INT and select the auto increment option(A_I).
- Sat Dec 07, 2013 9:57 am
- Forum: Announcements and Site Discussion
- Topic: Strange Stats for IR
- Replies: -1
- Views: 6992
Re: Strange Stats for IR
lol funny
- Mon Oct 21, 2013 9:31 pm
- Forum: Off-Topic
- Topic: Happy BDay Halls
- Replies: -1
- Views: 2548
Re: Happy BDay Halls
Happy birthday!
- Sat Oct 19, 2013 10:06 pm
- Forum: Beginner Help and Support
- Topic: Working With Time
- Replies: -1
- Views: 3702
Re: Working With Time
You could try using this jquery plugin :
http://keith-wood.name/countdown.html
http://keith-wood.name/countdown.html
- Fri Oct 18, 2013 4:53 pm
- Forum: Beginner Help and Support
- Topic: Mysqli Not Updating [Resolved]
- Replies: -1
- Views: 1336
Re: Mysqli Not Updating
Change
to
Code: Select all
$update_gold = "UPDATE stats SET gold='$gold1' AND food='$food1' WHERE $id = '$_SESSION[userid]";
Code: Select all
$update_gold = "UPDATE stats SET gold='$gold1',food='$food1' WHERE $id = '$_SESSION[userid]'";
- Wed Oct 16, 2013 7:26 pm
- Forum: Off-Topic
- Topic: .net vs java
- Replies: -1
- Views: 1550
Re: .net vs java
lol that was hilarious 

- Sun Oct 13, 2013 9:23 pm
- Forum: Beginner Help and Support
- Topic: New Messages Problem [Resolved]
- Replies: -1
- Views: 3232
Re: New Messages Problem
I think there was a problem with the quotes for the image's title, change : if($i > 0) {echo "<a href='messages.php?messages=1'><img src = 'images/newmail2.png' width='43' title = " . $i . "New></a>"; } to if($i > 0) {echo "<a href='messages.php?messages=1'><img src = 'image...
- Sat Oct 12, 2013 1:09 pm
- Forum: Beginner Help and Support
- Topic: Cron Job [Resolved]
- Replies: -1
- Views: 2011
Re: Cron Job
Code: Select all
$sql = "UPDATE `ranking` SET `attack`='".$i."' WHERE `id`='".$attack['id']."'";
$sql = "UPDATE `ranking` SET `defense`='".$i."' WHERE `id`='".$defense['id']."'";
Code: Select all
mysqli_query($db_conx, $sql);
- Thu Oct 10, 2013 7:48 pm
- Forum: Beginner Help and Support
- Topic: Updating Stats [Resolved]
- Replies: -1
- Views: 5436
Re: Updating Stats
Yes.. and that jquery library included from google's servers, you may want to make a local copy of it on your server, that way you dont have to depend on them. Pretty much you have to declare a div(though it works for many other page elements) and change its content using jquery. Though this ain't a...
- Thu Oct 10, 2013 7:37 pm
- Forum: Beginner Help and Support
- Topic: Updating Stats [Resolved]
- Replies: -1
- Views: 5436
Re: Updating Stats
Found a simpler fix than the ajax one which required some major changes to your scripts : <?php include_once("header.php"); include_once("includes/db_conx.php"); include("includes/functions.php"); include("includes/config.php"); include("includes/safe.php...