need some php help
hey there sorry about all the questions
but for a previous and next button this is what I have got so far
$a = 10;
$str1 = ($a > 10);
$str2 = ($a < 10);
print = $str1 $str2;
for it to be able to work fully what do I need to add to it? It uses a flat file database with out any mysql
also for the limiting code this is what I have thanks to some other people
$data = file("./name.txt");
for ($i = 0; $i < 5; $i++)
{
echo $data[$i];
$fields = explode("|", $data[$i]);
echo "$fields[0] - $fields[1] - ...<br>";
}
basically I want to include the previous and next buttons somehow to the limiting code and for the buttons I want to use something like this << .::. >>
thanks for your help