Displaying database entry's after using a loop
Hello. I am getting entry's from a database for one person after they login. I displayed multiple entries that are specific to them using a do while loop. However, the problem I am having is after I have displayed the entries, I cannot display anymore entries later on in the page.
I'm assinging the variable from the database using:
$getTv_type = mysql_fetch_assoc($getTv_type);
The loop uses:
do {
} while ($getTv_type = mysql_fetch_assoc($getTv_type))
I want to display it later again, for example by using:
echo $getTv_type['brand_name'];
I can't get the entries to display again. Any ideas?
Thanks