Jump to content
  • 0

CSS и PHP


olboror
 Share

Question

PHP скрипт генерирует обычную таблицу из MySQL. Как вывести результат используя классы CSS. Конкретно - задать ширину столбцов и в первом (естественно № пп) текст по центру, в остальных столбцах - слева. Подскажите пожалуйста, ну очень длинный затуп а результатов не дал. Спасибо

Edited by olboror
Link to comment
Share on other sites

15 answers to this question

Recommended Posts

  • 0
PHP скрипт генерирует обычную таблицу из MySQL. Как вывести результат используя классы CSS. Конкретно - задать ширину столбцов и в первом (естественно № пп) текст по центру, в остальных столбцах - слева. Подскажите пожалуйста, ну очень длинный затуп а результатов не дал. Спасибо

Добавьте таблице класс, и всем ячейкам со специфическими свойствами по отдельному классу.

Link to comment
Share on other sites

  • 0

for ($i = 0; $i < mysql_num_rows($query_sql); $i++)

При каждом проходе цикла будет высчитывать mysql_num_rows, лучше заранее посчитать :)

А ещё проще

while ($sql=mysql_fetch_assoc($query_sql))
{
echo "<td class="___">{$sql['msg']}</td>";
}

Edited by Int
Link to comment
Share on other sites

  • 0
for ($i = 0; $i < mysql_num_rows($query_sql); $i++)

При каждом проходе цикла будет высчитывать mysql_num_rows, лучше заранее посчитать :)

А ещё проще

while ($sql=mysql_fetch_assoc($query_sql))
{
echo "<td class="___">{$sql['msg']}</td>";
}

хех, учту на будущее)

Link to comment
Share on other sites

  • 0

Пока не получается, к сожалению на сегодня время закончилось. А вообще-то пытаюсь использовать такой код:

<head>

<title>Направление 1</title>

<link href="col34b.css" rel="stylesheet" type="text/css" />

</head>

<body>

<?php

define("HOST","localhost");

define("USER","alex");

define("PASS","12345");

define("DB","mysite3");

$link = mysql_connect(HOST,USER,PASS) or die (mysql_error());

mysql_select_db(DB, $link);

mysql_query ("set character_set_results='utf8'");

$sql = "SELECT * FROM `firma`";

$result = mysql_query($sql) or die(mysql_error() ."<br/>". $sql);

$table = "<table border=0 align=center> <thead><th>№ пп</th> <th>Имя</th> <th>Фамилия</th> <th>Телефон</th>

<th>Сайт</th> </thead>\n";

while ($row = mysql_fetch_assoc($result))

{

$table .= "<tr>\n";

$table .= "<td>".$row['id']."</td>\n";

$table .= "<td>".$row['name']."</td>\n";

$table .= "<td>".$row['lastname']."</td>\n";

$table .= "<td>".$row['dol']."</td>\n";

$table .= "<td>".$row['site']."</td>\n";

$table .= "</tr>\n";

}

$table .= "</table>\n";

echo $table;

?>

</body>

</html>

Link to comment
Share on other sites

  • 0

Я конечно не очень понял что хотел сказать автор, но может так:

<?php
$result = mysql_query ("SELECT * FROM firma");
while($myrow = mysql_fetch_assoc($result))
{
echo '<table border="0" align="center">
<tr>
<td>№ пп</td>
<td>Имя</td>
<td>Фамилия</td>
<td>Телефон</td>
</tr>
<tr>
<td>".$row['id']."</td>
<td>".$row['name']."</td>
<td>".$row['lastname']."</td>
<td>".$row['dol']."</td>
<td>".$row['site']."</td>
</tr>';
}
?>

Что нужно то? Почему не получается, какие ошибки?

Link to comment
Share on other sites

  • 0
Как вывести результат используя классы CSS. Конкретно - задать ширину столбцов и в первом (естественно № пп) текст по центру, в остальных столбцах - слева.

Включил телепатию и постарался понять:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">

<head>
<title>An XHTML 1.0 Strict standard template</title>
<meta http-equiv="content-type" content="text/html;charset=utf-8" />
<meta http-equiv="Content-Style-Type" content="text/css" />

<style type="text/css">
* {
margin: 0;
padding: 0;
font: 12px Arial;
}

body {
margin: 10px;
}

table {
width: 100%;
border-collapse: collapse;
border-spacing: 0;
border: 0;
}

td:first-child {
text-align: center;
}

td {
border: 1px solid;
}
</style>

<script type="text/javascript">

</script>
</head>

<body>

<table cellspacing="0">
<col align="center" />
<tr>
<td>111</td>
<td>222</td>
<td>333</td>
<td>444</td>
<td>555</td>
<td>666</td>
</tr>
<tr>
<td>111</td>
<td>222</td>
<td>333</td>
<td>444</td>
<td>555</td>
<td>666</td>
</tr>
<tr>
<td>111</td>
<td>222</td>
<td>333</td>
<td>444</td>
<td>555</td>
<td>666</td>
</tr>
</table>

</body>
</html>

Эффект нужен такой? Переписать PHP под него смогёте?

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy