Hi guys,
I have the following line of code in my script:
echo \"<TD align=left width=\\"20%\\"><a href=\\"\" . $PHP_SELF . \"?start=\" . ($start - 10) . \"\\">Previous</a>if($numrows > ($start + 10)) <a href=\\"\" . $PHP_SELF . \"?start=\" . ($start + 10) . \"\\">Next</a></TD>\";
How do i rewrite this script so that the
if($numrows > ($start + 10))
is not shown in the output?
Cheers,
micmac