Jump to content

[SOLVED] Mysql_query question


jacko_162

Recommended Posts

can i use the WHERE function twice in a query??

 

for emaple;

 

"select * from $table13 WHERE parent = '0' ORDER BY name ASC"

 

i want to execute the above query WHERE parent ='0' and i want it to alo only be WHERE view='Yes'

 

what do i need to put down?

Link to comment
Share on other sites

thats what i though, but it still shows those with View= 'No' :(

 

here is full code i am working with;

 

<?php

$categories = mysql_query("SELECT * FROM $table13 WHERE parent = '0' AND view = 'yes' ORDER BY name ASC") or die(mysql_error()); // Select all the root categories and order them alphabetically

while($category = mysql_fetch_array($categories)) // Start the loop for root categories
{
echo '<img src="images/arrow.gif"> <a href="catagory.php?name=' . $category['name'] . '">' . $category['name'] . '</a>'; // Display category name

$subcategories = mysql_query("SELECT * FROM $table13 WHERE parent = '" . $category['id'] . "' AN view = 'yes' ORDER BY name ASC") or die(mysql_error()); // Same as the query above but this time the parent is the root category that has just been echoed

echo '<br>';

while($subcategory = mysql_fetch_array($subcategories)) // Start the loop for subcategories
{
echo '  <img src="images/bluearrow.gif"> <a href="catagory.php?name=' . $subcategory['name'] . '"><em>' . $subcategory['name'] . '</em></a><br>'; // Display subcategory name
}
}
?>

 

brain is pickled :(

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  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.

×
×
  • 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.