socalnate Posted July 14, 2007 Share Posted July 14, 2007 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 Quote Link to comment Share on other sites More sharing options...
redarrow Posted July 14, 2007 Share Posted July 14, 2007 must be ur update query post it. Quote Link to comment Share on other sites More sharing options...
socalnate Posted July 14, 2007 Author Share Posted July 14, 2007 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. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.