mysql sorguda sütun genişliklerini değiştirmek

1 Cevap php
<?php

// Connection Database
$search = $_POST ['Search'];

mysql_connect("xxxxxx", "xxxxxxxxx", "xxxxxx") or die ("Error     Connecting to Database");
      mysql_select_db("xxxxxx") or die('Error');
     $data = mysql_query("SELECT* FROM course WHERE MATCH (CourseName, CourseDescription,   CourseLeader) AGAINST ('". $search ."')")
      or die (mysql_error());
Print "<table border cellpadding=3>";
while($info = mysql_fetch_array( $data ))
{
Print "<tr>";
Print "<th>Course Name:</th> <td>".$info['CourseName'] . "</td> ";
Print "<th>Course Description:</th><td>".$info['CourseDescription'] . "</td> ";
Print "<th>Course Leader:</th><td>".$info['CourseLeader'] . " </td></tr>";

}
Print "</table>";

?>

Benim php kodda ben bir resultset olarak, bir aramadan sonra sütunları CourseName, CourseDescription, CourseLeader yazdırın. CourseDescription nasıl bütün yazdırırım, metin bir yeri vardır? sütun genişliklerini değiştirmek için bir yolu var mı?

1 Cevap

Genişlik parametresini kullanarak ayarlayın

<th width="25%">

VEYA

<th width="400px">

Sizin kod aşağıdaki gibi bir şey olmalı

Print "<tr>";
Print "<th width='20%'>Course Name:</th> <td width='80%'>".$info['CourseName'] . "</td> ";
Print "<th width='20%'>Course Description:</th><td width='80%'>".$info['CourseDescription'] . "</td> ";
Print "<th width='20%'>Course Leader:</th><td width='80%'>".$info['CourseLeader'] . " </td></tr>";