Jump to content

Trouble with a query


Knouen

Recommended Posts

I have categories and items within categories.  A category may be appended to another category via its parentID field in the database.  ParentID can be set to NULL for a top-level category.  However, since the output of this list is used in a form for selecting a category to delete, it must be restricted not only to those cats without any child categories, but also cats which have no items in them.  Unfortunately I have no idea how to do the query for that.  If you help me I will wash your car.  Ok, not really.  But I'd appreciate it.

mysql_connect(DB_HOST, DB_USER, DB_PASS) or die(mysql_error());
mysql_select_db(DB_NAME) or die(mysql_error());
$result = mysql_query("select * from cat") or die(mysql_error());
$row = mysql_fetch_array($result);

/* Output all categories as dropdown list. */
echo '<select name="category"><option value="0" selected>-Select-</option>';
foreach($row as $cat){
echo '<option value=\"'.$cat['id'].'\">'.$cat['name'].'</option>';
}
echo '</select></li>';

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.