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?
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?



Comments on this journal
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.