Jump to content

display Column details from mysql using php


vboopathicse

Recommended Posts

hi,

 

i'm new in php/mysql. i'm stored student marks values in following format in mysql db table.

 

 

id student_code Tamil English Maths Science Social

1                1        100      75      78      88      95

2                2        85      90        88    80      100

 

But i want to search and display the specific student marks in following format.

 

id:1

 

student_code:1

 

Tamil:100

 

English:75

 

Maths:78

 

Science:88

 

Social:92

 

Total:?

 

Avg:?

 

please give correct code for this format.

 

 

Link to comment
Share on other sites

query the database and get the details.

 

then,

 


while( $row = mysql_fetch_array($results) ){ 

echo 'id: '.$row['id'].'<br />';

echo 'id: '.$row['tamil'].'<br />';

echo 'id: '.$row['english'].'<br />';

echo 'id: '.$row['maths'].'<br />';

}


 

 

you can do the html formatting part as you want. its just a example

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.