bharani kumar wrote:
Hi ,

Working in  PHP,MYSQL project,

i have student table , i want to list the student name from the table,

the table contains around 10000 records,i want to display all this 10000
records into TWO Div,

I dont want to execute query twice,

image markup link here,

Image Markup <http://www.freeimagehosting.net/image.php?f1c6bb41eb.gif>


Assume if genral render means ,

After query executed , i will display use the wile loop then i returned all
the records from table,

But my requirement something different ,

In the Left hand side DIV , i want to print 5000 Records,

In the Right hand Side DIV , i want to print 5000 Records,

What is the Idea for this ,

Thanks


You would do it just as if you had 4 names to render in two divs. The only thing that's different is the quantity of data you need to turn into HTML:

<div> name1<br>name2</div><div>name3<br>name4</div>

How to get those divs to sit side-by-side within a parent div is an exercise left to the student.

--
Shawn Green, MySQL Senior Support Engineer
Sun Microsystems, Inc.
Office: Blountville, TN



--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:    http://lists.mysql.com/mysql?unsub=arch...@jab.org

Reply via email to