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 difference between pop3 IMAP and MAPI?

1003


Explain whether it is possible to share a single instance of a memcache between multiple php projects?

909


How does the identity operator ===compare two values in PHP?

1024


Explain Booleans in PHP?

1039


What is the function of mysql_real_escape_string in php?

881


Which function would you use to determine the length of a string in php?

977


How to write the form tag correctly for uploading files?

915


What is phpsessid?

920


What is the difference between the include() and require() functions?

1398


In PHP, fgets() is used to read a file one line at a time. State Whether True or False?

1130


Tell me what is the difference between get and post?

903


How many open modes available when a file open in PHP?

1117


How do I get csrf token?

924


Tell us how can we access the data sent through the url with the post method?

951


What will the ?getdate() function returns in PHP?

1028