Jump to content
  • 0

Не выводится текст


Krote
 Share

Question

Вот такой код

<? include("blocks/db.php");
if(isset($_GET['cat'])){$cat=$_GET['cat'];}
$result=mysql_query("SELECT * FROM categories WHERE id='$cat'",$db);
if(!$result){echo "Выборка не прошла";}
$myrow=mysql_fetch_array($result);
?>
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1251">
<meta name="description" content="<? echo $myrow["meta_d"]?>">
<meta name="keywords" content="<? echo $myrow["meta_k"]?>">
<link href="style/style.css" rel="stylesheet" type="text/css">
<title><? echo $myrow["title"];?></title>
</head>
<body>
<div id="wrapper">
<? include("blocks/header.php");?>
<? include("blocks/leftmenu.php");?>
<div id="content">
<? echo $myrow["text"];?>



</div>
<? include("blocks/footer.php");?>
</div>
</body>
</html>

Проблема, не выводится текст в контенте... хотя все остальное(заголовок, кл. слова и тд.) выводится... как исправить?

Edited by Krote
Link to comment
Share on other sites

6 answers to this question

Recommended Posts

  • 0

кстате пробовал самые разные варианты... я пробовал вставить в контент и кл. сл. и пробовал туда вывести заголовок все равно не выводит... моожет что то с блоком контента?

но если например попробовать вставить

<? echo "Тест";?>

то все отлично работает..

Link to comment
Share on other sites

  • 0

Тут скорее всего нужно mysql_fetch_array заменить на mysql_fetch_assoc.

Или при выводе написать индекс обычного массива.

mysql_fetch_array() без указания дополнительного параметра выдаёт оба массива и нумерованный и ассоциативный

Link to comment
Share on other sites

  • 0

mysql_fetch_array() без указания дополнительного параметра выдаёт оба массива и нумерованный и ассоциативный

Да точно. Забыл. Сенкс, что напомнил.

Тогда единственной проблемой может быть выборка(содержимое таблицы, сам запрос). Т.е. без дампа таблицы и вывода значения переменных не разобраться.

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