Search found 6 matches

by tabitha
Thu Aug 27, 2009 10:16 pm
Forum: PHP - Code
Topic: Please please help! (should be an easy fix)
Replies: 4
Views: 367

Re: Please please help! (should be an easy fix)

You're using WP, but you're using a WooThemes template, have you contacted support? Here's a link their help forum: http://forum.woothemes.com/ I would first backtrack and disable any new plugins you've added recently, and then check your while loop. Really though, what everyone else said applied, w...
by tabitha
Thu Aug 27, 2009 9:31 pm
Forum: PHP - Code
Topic: SOLVED: Help me with Incrementing for pagination please!
Replies: 7
Views: 819

Re: SOLVED: Help me with Incrementing for pagination please!

would you mind posting where the code went wrong?? It was the variable assignment problem you noted. After making these changes as suggested:   if(isset($_GET['page'])) { $page=$_GET['page']; } else { $page=1; } $npage=$page-1;   It functions properly. Thank you again, I will know next time to chec...
by tabitha
Thu Aug 27, 2009 9:27 pm
Forum: PHP - Code
Topic: Table Union Results/Sort
Replies: 0
Views: 93

Table Union Results/Sort

Hi, I've got a page where results are sorted by day, week, month, highest, and lowest--all these function properly. However there should also be a most commented and least commented result--These do not return results. Here's the problem, comments are stored in the comments table, where are complime...
by tabitha
Thu Aug 27, 2009 9:46 am
Forum: PHP - Code
Topic: SOLVED: Help me with Incrementing for pagination please!
Replies: 7
Views: 819

Re: Help me with Incrementing for pagination please!

Thank you thank you thank you! It works wonderfully now! I really appreciate your help, and will remember this for future reference.
by tabitha
Thu Aug 27, 2009 8:42 am
Forum: PHP - Code
Topic: SOLVED: Help me with Incrementing for pagination please!
Replies: 7
Views: 819

Re: Help me with Incrementing for pagination please!

Thank you so far for the response, I think maybe I needed to post more code for you to see what's going on here. I think the problem is in the query statement or my limits. Here's the full code: <?php   include('header.php'); /* Let's submit something */ if($_POST['submit']){     if(!isset($_SESSION...
by tabitha
Thu Aug 27, 2009 1:14 am
Forum: PHP - Code
Topic: SOLVED: Help me with Incrementing for pagination please!
Replies: 7
Views: 819

SOLVED: Help me with Incrementing for pagination please!

I'm totally lost, I've been looking at this for hours and am certain that I must be some sort of *** because I can't find the problem. The pagination links display, urls behave correctly ?page=1 ?page=2 but my results aren't actually incrementing. I just see the first 10 results on every page. here'...