Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

i want to store retrieved data from database into an array
list with limit.And display the data from that array
list.have any answer for this?

Answer Posted / guest

First retrieve data from database using following command

$select = mysql_query("SELECT * FROM table limit number") or
die(mysql_error);

then store retrieve data in array using following command

while($row = mysql_fetch_array($select))
{
$rname[] = $row['name'];
}

display values of array

foreach($rname as $val)
{
echo $val;
}

Is This Answer Correct ?    15 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is the scope of php in the future if any other language is developed then may be php is loss ???

14613


How can we encrypt the password using php?

1182


How to create a table using php?

1130


Which MySQL function would you use to select a database?

1115


When to use single quotes, double quotes, and backticks?

1028


What is array function in javascript?

1082


What is difference between array_merge and array_combine in php?

1094


Differentiate between require and include?

1021


What is the difference between echo, print and printf()?

1079


What is helper function?

980


What is advanced php programming?

1075


Write a program to display table of a number using php?

991


Do you know what is use of count() function in php?

1052


Is php a low level language?

1022


What is csrf mvc?

1082