How to Restrict User Visit on Lesson?
-
I want to Restrict Users to Total Visit Per Lesson 5 Times?
How can I do that?
With This WP Query, I can get the Total Visits.
$myset = $wpdb->get_results( “SELECT visits FROMwp_namaste_visits
WHEREuser_id
=’$u_id’ ANDlesson_id
=’$postid'” );with ‘echo print_r($myset);’
Output is as Require.
Array ( [0] => stdClass Object ( [visits] => 1 ) [1] => stdClass Object ( [visits] => 7 ) [2] => stdClass Object ( [visits] => 62 ) )
Now What I can’t Solve is How to Sum – All Values Got from Query?
If (sum of visits <= 5) { // Do This | else { // } }
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
- The topic ‘How to Restrict User Visit on Lesson?’ is closed to new replies.