I think you have to setQuery() also.
Try:
Main Topics
Browse All TopicsHi,
I need to reset number of hits using mysql query in Joomla 1.5.x when user clicks on a RESET LINK.
The code I wrote has two problems:
1. It does not reset hits=0
2. it only works with hard coded ID
Query executed in phpMyAdmin has this syntax:
UPDATE `data_base`.`jos_ezrealty`
URL linked to RESET is
$reset_link = JRoute::_( "index.php?&option=com_ezr
How do I get it to work?
Thank you
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
NerdsOfTech:
You were right, I have to setQuery and query in Joomla. The code almost works, and I cannot understand why, the only code modification I have made is below. When I arrive on the page with Reset button, my URL points to
index.php?option=com_ezrea
Reset link points to index.php?option=com_ezrea
When I click on it the hits counter does not get reset, but text changes to "IF" which indicated that $_GET['reset'] is active.
When I click on the link again, the hits counter will reset to 0, and the text will remain "IF".
If "hits = 0" is changed to any number I still have to click on it twice to change the number, it never works the first time (regardless of which $query I have used).
Business Accounts
Answer for Membership
by: NerdsOfTechPosted on 2009-08-17 at 21:06:55ID: 25120076
1. reference the table name by the set mysql table name
2. the id and hits are numerical so no quotes should surround.
So try:
Select allOpen in new window