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
https://forums.phpfreaks.com/topic/60000-solved-somethingphp/
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
https://forums.phpfreaks.com/topic/60000-solved-somethingphp/#findComment-298396
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.