Hello, I'm new on the php's coding...
i'm having problem spliting the postes in the forum to pages
at the first page everithing is OK but at other pages i have problems...
$limit=5;
$mispur=mysql_query("SELECT * FROM $table WHERE parent='0'");
$numrows=mysql_num_rows($mispur);
if (empty($offset))
{
$offset=0;
}
show(0);
function show($id) {
GLOBAL $table,$id,$offset,$limit;
$query1 = mysql_query("SELECT * FROM $table WHERE parent='$id' order by id desc limit $offset,$limit");
$num=mysql_num_rows($query1);
if (mysql_num_rows($query1)) {
while ($q=mysql_fetch_array($query1)) {
$name=$q["name"];
$space=$q["space"];
$mes=$q["mes"];
$date=$q["date"];
$link=$q["link"];
$l=$q["l"];
$id=$q["id"];
$parent=$q["parent"];
$subject=$q["subject"];
someone?