Welcome to Dream.In.Code
Getting PHP Help is Easy!

Join 136,584 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,963 people online right now. Registration is fast and FREE... Join Now!




Displaying records to html textboxes from mysql

 
Reply to this topicStart new topic

Displaying records to html textboxes from mysql

ruler2000
7 Oct, 2008 - 04:15 PM
Post #1

New D.I.C Head
*

Joined: 7 Oct, 2008
Posts: 1

CODE
<style type="text/css">
<!--
body {
    background-image: url(../New%20Website/images/norway.jpg);
}
body,td,th {
    color: #0000FF;
}
-->
</style>
<p> </p>
<form id="form1" name="form1" method="post" action="">
  <p><br />
       <?php
$con = mysql_connect("localhost","root","");
if (!$con)
  {
  die('Could not connect: ' . mysql_error());
  }

mysql_select_db("studentdatabase", $con);
$result = mysql_query("SELECT * FROM studentdetails");

echo "<table border='1'>
<tr>
<th>StudentNo</th>
<th>Name</th>
<th>Surname</th>
<th>Gender</th>
<th>Course</th>
<th>Level</th>
</tr>";
while($row = mysql_fetch_array($result))
  {
  echo "<tr>";
  echo "<td>" . $row['StudentNo'] . "</td>";
  echo "<td>" . $row['Name'] . "</td>";
  echo "<td>" . $row['Surname'] . "</td>";
  echo "<td>" . $row['Gender'] . "</td>";
  echo "<td>" . $row['Course'] . "</td>";
  echo "<td>" . $row['Level'] . "</td>";
  echo "</tr>";
  }
echo "</table>";
mysql_close($con);
?>
    </p>
</form>


Mod edit - Added code tags.
User is offlineProfile CardPM
+Quote Post

chili5
RE: Displaying Records To Html Textboxes From Mysql
7 Oct, 2008 - 04:21 PM
Post #2

D.I.C Addict
****

Joined: 28 Dec, 2007
Posts: 700



Thanked: 4 times
My Contributions
What is your question?

well: if you want to put database text in text fields just use:

html

<input type="text" name="" value="<?php echo $row[level];?>" />


Use code tags also.
User is offlineProfile CardPM
+Quote Post

Fast ReplyReply to this topicStart new topic
Time is now: 12/3/08 12:46AM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

DIC Chatroom

Bye Bye Ads

Monthly Drawing

Thumb Drive

Top Contributors

Top 10 Kudos This Month