canadacatman9 Posted September 11, 2016 Share Posted September 11, 2016 <?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 Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted September 11, 2016 Share Posted September 11, 2016 Cross-posted on CodingForums. Quote Link to comment Share on other sites More sharing options...
canadacatman9 Posted September 11, 2016 Author Share Posted September 11, 2016 Trying to get help man. Thanks Quote Link to comment Share on other sites More sharing options...
Jacques1 Posted September 11, 2016 Share Posted September 11, 2016 Sure, but we're not stupid. When I see the same thread popping up in n different forums, my motivation for investing time into a reply drops to zero. Quote Link to comment Share on other sites More sharing options...
canadacatman9 Posted September 11, 2016 Author Share Posted September 11, 2016 Oh I am sorry This will be my first website and just trying to get it done. Again I apologize for this. Quote Link to comment Share on other sites More sharing options...
ginerjm Posted September 11, 2016 Share Posted September 11, 2016 If you are going to post code at LEAST make it readable. Nobody but NOBODY writes code like a paragraph of text. They write it line by line. Quote Link to comment Share on other sites More sharing options...
QuickOldCar Posted September 12, 2016 Share Posted September 12, 2016 You don't need to add a href link, place a hidden field in the form. <input type="hidden" name="click" value="yes"> 1 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.