I am using the same working code used on one of my other websites and for some weird odd reason it is not echoing the 'title' field from my database. this is my code:
<?php
$id = $_GET['meeting_id'];
$query = mysql_query("SELECT * FROM Meetings WHERE meeting_id = '$id'")
or die(mysql_error());
while($info = mysql_fetch_array($query)) {
echo "";
$title = $info['title'];
}
?>
<form action="bookedsuccessfully.php" method="post">
<table width="100%" border="0">
<tr>
<td><label>Meeting Title:</label></td>
<td><input type="text" value="<?php echo $title;?>" name="title" disabled/></td>
</tr>
...
i want the title to be displayed but the field to be disabled from any edits. any help?