Jump to content
  • 0

Категории


web-mindfreak
 Share

Question

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

Ну так вот:

если url == info

{

mysql

}

else

{

вывести все

}

И так далее

Но что подставить вместо url???

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

опять же, в предыдущих постах говорил, и тут повторюсь: нужна для этого структура с id и root, где id - autoincrement, а root - родительская категория.

выборка будет выглядеть примерно так:

http://site.ru/info/1 - для этого меню запрос такой: "SELECT * FROM `table` WHERE `root` = 0";

а для контента к этой категории такой: "SELECT * FROM `table` WHERE `id` = $_GET['id']";

Link to comment
Share on other sites

  • 0

опять же, в предыдущих постах говорил, и тут повторюсь: нужна для этого структура с id и root, где id - autoincrement, а root - родительская категория.

выборка будет выглядеть примерно так:

http://site.ru/info/1 - для этого меню запрос такой: "SELECT * FROM `table` WHERE `root` = 0";

а для контента к этой категории такой: "SELECT * FROM `table` WHERE `id` = $_GET['id']";

И вообще не понятно, где ты здесь использовал info и 1.
Link to comment
Share on other sites

  • 0

опять же, в предыдущих постах говорил, и тут повторюсь: нужна для этого структура с id и root, где id - autoincrement, а root - родительская категория.

выборка будет выглядеть примерно так:

http://site.ru/info/1 - для этого меню запрос такой: "SELECT * FROM `table` WHERE `root` = 0";

а для контента к этой категории такой: "SELECT * FROM `table` WHERE `id` = $_GET['id']";

И вообще не понятно, где ты здесь использовал info и 1.

кхм..., так как автор не удосужился дать дамп, то я просто предположил что как-то так должно быть:

table

| id | root | title| content |

| 1 | 0 | info | text |

$res = mysql_query("SELECT * FROM `table` WHERE `root` = 0");

while($row = mysql_fetch_array($res)) {

echo '<li><a href="http://site.ru/'.$row['title'].'/'.$row['id'].'"></li>';

}

и вывод контента:

$cont = mysql_query("SELECT * FROM `table` WHERE `id` = $_GET['id']");

while($myrow = mysql_fetch_array($cont)) {

echo '<p>'.$row['content'].'</p>';

}

но можно и по другому, можно в строке url просто записать:

http://site.ru/info/1

а в .htaccess добавить:

RewriteEngine on

RewriteBase /

RewriteRule ^info/([0-9]+)/?$ index.php?url=info&id=$1

Int, специально для тебя :)

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