Jump to content

Trying to add a click counting code.


canadacatman9

Recommended Posts

<?php 
if(!file_exists('counter.txt')){ 
file_put_co 

ntents('counter.txt', '0'); 
} 
if($_GET['click'] == 'yes'){ 
file_put_contents('counter.txt', ((int) file_get_contents('counter.txt')) + 1); 
header('Location: ' . $_SERVER['SCRIPT_NAME']); 
die; 
} 
?>

I am trying to add a click counter to my search button. I found the code online.

I need to add <a href="?click=yes"></a> to

<form id="tfnewsearch" method="get" action="http://www.google.com/search?q=<?php echo $_REQUEST['q']?>">
<input type="text" id="tfq" class="tftextinput4" name="q" size="21" maxlength="120" <?php if(isset($_REQUEST['q'])) echo " value='{$_REQUEST['q']}'"?> autocomplete="off"  placeholder="Search Google..."><input type="submit" value="" class="tfbutton4">
</form>

Would anyone know how. Thanks

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.