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

Join 131,490 PHP Programmers for FREE! Get instant access to thousands of PHP experts, tutorials, code snippets, and more! There are 1,822 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
post 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

Go to the top of the page


chili5
post 7 Oct, 2008 - 04:21 PM
Post #2


D.I.C Addict

****
Joined: 28 Dec, 2007
Posts: 683



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

Go to the top of the page

Fast ReplyReply to this topicStart new topic
Time is now: 11/20/08 12:10AM

Live PHP Help!

PHP Tutorials

Reference Sheets

PHP Snippets

Bye Bye Ads

Free DIC T-Shirt

T-Shirt Example

Related Sites

Monthly Drawing

Thumb Drive

Partners

Top Contributors

Top 10 Kudos This Month