Jump to content

[SOLVED] something.php?=


jck

Recommended Posts

i have made a script with some links so when i point sometimes it says

view.php?id=someno  but sometimes when there are no more records it just view.php?id=  i want to add an if clause to echo that no such jokes exist in that case

i have tried id == '0' and id == ' ' snd id== '' but none of them work can i do anything for it??

Link to comment
Share on other sites

$rnext = mysql_query("SELECT * from dd_items WHERE ItemCategory = '$a1[itemCategory]' AND ItemID < '$ItemID' ORDER by ItemID 

DESC LIMIT 1");
$rownext = mysql_fetch_array($rnext);
$next = $rownext['ItemID'];

$rprev = mysql_query("SELECT * from dd_items WHERE ItemCategory = '$a1[itemCategory]' AND ItemID > '$ItemID' ORDER by ItemID 

DESC LIMIT 1");
$rowprev = mysql_fetch_array($rprev);
$prev = $rowprev['ItemID'];



<a href="/view.php?ItemID=<?=$prev?>"><img
style="border: 0px solid ; width: 50px; height: 50px;"
alt="Previous Joke in this category" src="images/prev.gif"></a><a
href="view.php?ItemID=<?=$next?>"><img
style="border: 0px solid ; width: 50px; height: 50px;"
alt="Next Joke in this category" src="images/next.gif"></a>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.