- Автор темы
- #11
Код:
<?php
$link = mysql_connect('localhost', 'user', 'password');
if (!$link) {
die('Could not connect: ' . mysql_error());
}
mysql_select_db('basename', $link);
$result = mysql_query('SELECT text FROM `content`');
if ($result){
while ($row = mysql_fetch_assoc($result)) {
echo htmlspecialchars($row[`text`],ENT_QUOTES);
}
} else {
echo mysql_errno() . ": " . mysql_error();
}
mysql_free_result($result);
mysql_close($link);
?>
подключилось, пытается парсить, вот такие проблеммы появились:
Код:
1054: Unknown column 'text' in 'field list'
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/acc151/public_html/domain.ru/pars.php on line 15
Код:
1146: Table 'basename.content' doesn't exist
Warning: mysql_free_result(): supplied argument is not a valid MySQL result resource in /home/acc151/public_html/domain.ru/pars.php on line 15