DHTML Menu / JavaScript Menu Powered by Milonic
Already a member? Sign In

Village Journals help
Resonate your identity with Naseeb journals. Express your opinions, share your thoughts, post your writings and connect with like minded people through the power of expression.

PHP Help


Alright, i'm trying to figure out a bit of code. its a simple code (well i thought it was) thats suppose to load comics. its implemented here : www.ninjabi.com

however, its not working as i'd like it. much of it works fine, but on that page you are suppose to be able to click the big F to go forward and it should go to the first comic, but it doesnt even link to anything...

so anyone willing to help a sista' out?
 

Add Comments

 
Add
 

  Comments on this journal

Login to find out (April 10, 2007 at 10:00am)
The link you have provided result in Access Forbidden, here is the page text "Forbidden
You don't have permission to access /comic/ on this server.

Additionally, a 404 Not Found error was encountered while trying to use an ErrorDocument to handle the request.
"
The correct link is www.ninjabi.com not www.ninjabi.com

It seems like you want to implement some HTML-Paging or Pagination. Do remember to use LIMIT 0,1 clause in your SQL Query as below;

SELECT * FROM comics LIMIT 0,1

This query will result in result set that will have just first row.

If you can provide sample of code, it would be lot easier. BTW you can use _ paste bin _ pastebin.com and send me the link to your code.