Jump to content

Hit Counter? Hits Updation


V-Man

Recommended Posts

God, it's been forever since I posted last! And of course, I'm still asking for help. Sigh.. :)


[code]
include("bWd/includes/db.php");

$ref = $_GET['ref'];

$sql = "SELECT * FROM misc WHERE ref = '$ref'";

db_connect();

$result = mysql_query($sql)
         or die('Query failed. ' . mysql_error());

if (mysql_num_rows($result) == 1) {

    while ($row = mysql_fetch_array($result))
    {

        $insert = "UPDATE misc SET hits = ".$row['2']++."WHERE ref = '$ref'";
        mysql_query($insert) or mail('roughnroudy@gmail.com', 'Minvera Index DB Error', (mysql_error()));
        
    }
}
[/code]

Anyway, heres the error:
Parse error: parse error, unexpected '\"' in /hsphere/local/home/minvera/minvera-fx.com/index.php on line 19

Im not missing any basic things like semi colons etc, at least as far as I can tell. This is my first attempt at a hit counter, so I thought I would come and ask the pro's when I got stuck. So here I am! :)

Basically, when I get a hit from a website that I have done (from the template desigh by link at the bottom of pages) I want to be able to tell who from and how many.

[code]
CREATE TABLE `misc` (
  `id` int(255) NOT NULL auto_increment,
  `ref` varchar(255) NOT NULL default '',
  `hits` varchar(255) NOT NULL default '',
  `info` varchar(255) NOT NULL default '',
  PRIMARY KEY  (`id`)
) TYPE=MyISAM AUTO_INCREMENT=2;
[/code]
Link to comment
Share on other sites

That's kind of a poor way to go about it. All you have to do is check to see if the reference is in the database already and if it is, just run an update:
UPDATE misc SET hits = hits + 1 WHERE ref = 'whatever'; <-- literally like that except for changing the "whatever" variable

If it's not already in the table, you'll want to do insert a new record.
Link to comment
Share on other sites

[!--quoteo(post=369673:date=Apr 28 2006, 03:30 PM:name=ober)--][div class=\'quotetop\']QUOTE(ober @ Apr 28 2006, 03:30 PM) [snapback]369673[/snapback][/div][div class=\'quotemain\'][!--quotec--]
That's kind of a poor way to go about it. All you have to do is check to see if the reference is in the database already and if it is, just run an update:
UPDATE misc SET hits = hits + 1 WHERE ref = 'whatever'; <-- literally like that except for changing the "whatever" variable

If it's not already in the table, you'll want to do insert a new record.
[/quote]


Thanks. I tried that and got nothing but errors. THank thougs. Ill try just what you have again. See how that goes. Thanks Ober.

Solved
Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.