* Thus wrote Labunski:
>
> $data = mysql_query("SELECT * FROM firt_table WHERE cat='sweaters' ORDER BY
> `id` ASC ") or die("can't find DB!");
> while($line = mysql_fetch_array($data)){
> echo' ';
> }
>
> for example, there are 3 records in the "first_table", so script will output
> only 3 record
Hi,
this script output's data from the database..
$data = mysql_query("SELECT * FROM firt_table WHERE cat='sweaters' ORDER BY
`id` ASC ") or die("can't find DB!");
while($line = mysql_fetch_array($data)){
echo' ';
}
for example, there are 3 records in the "first_table", so script will output
only
2 matches
Mail list logo