naziatarannum -1 Junior Poster in Training 15 Years Ago Hi All, I need to track the number of times a link is clicked/file downloaded & capture this info in the database. please advise urgently.. javascript 0 0 Share Seten -1 Junior Poster 15 Years Ago Dependent on your webserver, just count how many times a picture was sent to be displayed(read) similar goes for files. Or you can add more information, not just one sentence. Hi All, I need to track the number of times a link is clicked/file downloaded & capture this info in the database. please advise urgently.. 0 0 Share naziatarannum -1 Junior Poster in Training 15 Years Ago Hi All, I need to track number of clicks on a hyperlink & save this count in a table in database. I need to develop in javascript Please help ASAP :-( 0 0 Share chandru7 -1 Junior Poster in Training 15 Years Ago Just use one incrementer and store the value in one hiddenfield,and update in database. for ex, Copy to Clipboard<input type=hidden id=NoOfClicks> In Js, var val=document.getElementById('NoOfClicks'); val.value = val.value+1; Otherwise try ajax,if need any help for ajax check the ajax articles here 0 0 Share Share Facebook Twitter LinkedIn Reply to this topic Be a part of the DaniWeb community We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge. Sign Up — It's Free!
Seten -1 Junior Poster 15 Years Ago Dependent on your webserver, just count how many times a picture was sent to be displayed(read) similar goes for files. Or you can add more information, not just one sentence. Hi All, I need to track the number of times a link is clicked/file downloaded & capture this info in the database. please advise urgently.. 0 0 Share
naziatarannum -1 Junior Poster in Training 15 Years Ago Hi All, I need to track number of clicks on a hyperlink & save this count in a table in database. I need to develop in javascript Please help ASAP :-( 0 0 Share
chandru7 -1 Junior Poster in Training 15 Years Ago Just use one incrementer and store the value in one hiddenfield,and update in database. for ex, Copy to Clipboard<input type=hidden id=NoOfClicks> In Js, var val=document.getElementById('NoOfClicks'); val.value = val.value+1; Otherwise try ajax,if need any help for ajax check the ajax articles here 0 0 Share