Jump to content

how to store $a value


beboo002

Recommended Posts

this is my code and i am find my $a value from my database

 

<? $sql2="select * from tbl_cat where sub_cat_id='$a' ";

$res2=mysql_query($sql2,$link);//$query=mysql_fetch_row($res);

$COLS_PER_ROW = 2;

$colCount = 0;

$numRows = mysql_num_rows ($res2);

while ($row2=mysql_fetch_array($res2))

{

  // Start a row whenever our count is divisible by the number of items in each row

  if ($colCount % $COLS_PER_ROW == 0)

  {

      echo "<tr>";

  }

  echo "<td><td><td><td><a href='test.php?sub_cat_id=$row2[id] 'class=bluelinkfont  >$row2[cat_name]</a></td></td></td></td>";

  // End the row when the last space in the row has been filled, or when there are no more items in the result set.

 

  if ($colCount % $COLS_PER_ROW == $COLS_PER_ROW - 1 || $colCount == $numRows - 1)

  {

      echo "</tr>";

  }

  $colCount++;

}

echo"<br><tr><tr>";

 

 

 

?>

Link to comment
https://forums.phpfreaks.com/topic/70621-how-to-store-a-value/#findComment-354911
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.