php - See table (mysql) add changes to table -


can 1 please me how make changes after reading table?

i have selected , got data want table. this:

 <?php  $sql = "select * lesson modulid = '3' , correctedby = 'value' or correctedby null";  $result = mysql_query($sql, $con);  echo "<hr>"; while ($nextrow= mysql_fetch_array($result)){     echo "studentid: " . $nextrow['studentid'] ;     echo "<br>modulid: " . $nextrow['modulid'];         echo "<br>besvarelse: " . $nextrow['answer'];     echo "<hr>";         } ?> 

the problem have is: have colum in table named result, how want wright "replyanswer" same tabel got answer from. can sending reply answer form? understand trying explain?


Comments

Popular posts from this blog

java - Intellij Synchronizing output directories .. -

git - Initial Commit: "fatal: could not create leading directories of ..." -