Jump to content

PHP 5-Star with .htaccess Votes Duplicated Twice.


socalnate

Recommended Posts

I'm posting this link from a php 5-star voting system to the webbrowser:

 

<li><a href="<?php echo $_SERVER['PHP_SELF'] . "?id=" . $_GET['id'] . "&vote=1";?>" title="Rate this 1 star out of 5" class="one-star">1[/url]</li>

 

to this .htaccess file:

___

Options +FollowSymlinks

 

RewriteEngine On

 

RewriteBase /directory/

RewriteRule ^([0-9]+) phpfile.php?id=$1

 

For every link clicked it adds in my database 2 votes and twice the rating.  So if someone put in a 3 -star vote it would be 6 points and 2 votes.  Any ideas?

 

Huh

Nathan

 

My .htaccess file looks fine then?  I'm pretty sure the .htaccess will ONLY affect the this:

 

/directory/1234

 

1234 being some number redirected to this:

 

phpfile.php?id=$1

 

with this displayed in the internet explorer

 

/directory/1234

 

as the link.

 

I guess I'm confused as to what happens if you send it a literal link other than just a straight number to the directory with the .htaccess file. 

 

 

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.