Tagged Questions
0
votes
1answer
18 views
Batch add tags to posts via phpmyadmin - wordpress
How would I go about batch assigning tags to posts via phpmyadmin? I have a custom table in my database that contains the postID and one column with a comma separated list of keywords for each ...
0
votes
1answer
51 views
Appending tags to a row in a MySQL db
I'm generally a front end developer (HTML/CSS etc) but currently getting my chops stuck into some back end development for a challenge. Please bear in mind I've only been doing this back-end thing for ...
0
votes
0answers
43 views
MYSQL: Query to Output all related / tags / similar ids
I am working on a Query, but cant get it do what i want.
I have this table: family
family.id
family.name
family.related
With this content:
id | name | related
1 | Name1 ...
0
votes
1answer
30 views
mysql positive and negative tag filtering
I have a list of sites that are all tagged. I am getting stumped on a query to use that is fast and will allow "negative" tags. In other words, like when you search for Google saying -yahoo would ...
0
votes
1answer
22 views
Retrieve items matching tags, and simultaneously retrieve all tags that go along with each item
I have the following tables, relevant to this question:
project
- projectId (PK)
- projectTitle
- projectDescription
- etc..
tag
- tagId
- tagName
- tagDescription
- etc...
project_tag
- projectId ...
2
votes
1answer
39 views
extract icon for each tag from database
I want to display icons for each tag, just like Stackoverflow does.
There are 2 tables related, table_icon and table_event.
table_event is for recording the events happened, of course tags to ...
0
votes
1answer
62 views
Database structure and search approach for complex search engine based on time and tags
I've been trying to figure this out for two months now, went through countless brainstorming sessions with other developers and still haven't been able to come up with a good solution.
The idea
We're ...
0
votes
1answer
201 views
How to display html from a mysql database in php
I'm stuck with trying to figure out how to display html tags inside of a mysql table. I've tried using addslashes, mysql_real_escape_string, as well as stripslashes to view the tags properly. ...
-1
votes
2answers
85 views
Searching php + mysql close words?
First of all sorry for my english...
I have a tags field on database and i am searching like
SELECT * FROM table WHERE tags LIKE '%$keyword%' and tags LIKE '%$keyword%'
i seperate tags by space ...
0
votes
1answer
65 views
MySQL query for similar videos via video tagging (CodeIgniter)
I am working on a PHP application wich includes a video section. I have so far constructed video tagging as an video categorization. When you are adding a video, you can select from 25 predefined tags ...
0
votes
3answers
55 views
How can I add a break within two values in php?
I got this code
$title = new FullName($reservation->Title, $reservation->Description)
which shows the values Title and Description inside a box, but it does so directly following each ...
1
vote
1answer
73 views
MySQL vs XML for Tagging mechanism
I want to store tags per Media (Image/Sound/Video/Pdf) uploaded by users. And in future I would like to use this tags for searching the media. I am a beginner developer, and I used one way to do this.
...
0
votes
2answers
89 views
How does WordPress/mySQL associate tags with posts [duplicate]
Possible Duplicate:
How do you recommend implementing tags or tagging
I'm learning some php/mysql and I had this thought on how it is wordpress associates a tag with a post, more so, a tag ...
0
votes
1answer
64 views
Searching a MySQL database for tags
I'm working on creating a system to allow users to upload items and add 'tags' to them to help them be visible in searches. Currently, I have a database that works like this:
id|title|tags
Where ...
0
votes
2answers
76 views
mysql tag query using “toxi” schema
I'm building a site that has a tagging based on the toxi schema. But I'm having difficulties generating a query that fetches links/bookmarks based on their tag. Using "Toxi" the links/bookmarks table ...
2
votes
3answers
210 views
Complex SELECT query in MySQL
I have the following tables:
articles: id, title, content
tags: id, tag, tagCategory
tags2articles: id, idTag, idArticle
categories: id, title, someOtherFields
In a page I need to select all the ...
2
votes
1answer
65 views
Realtime Performant Tag Seach in MySQL or Redis
Problem Description:
A tag (tags) can be associated with arbitrary objects through a junction table (tagged_as). For a specific object type (specific_object), select the union or intersection of all ...
0
votes
1answer
25 views
getting rows from a MySQL database associated with tags through a link table
I have three MySQL tables, one with data, one with tags and one with associations between those two, which seems to be common practice when storing tags. The tables look like this:
links:
...
1
vote
3answers
38 views
MySQL: Can't update a single record based on an autoincremented key
I have a table called "data" that is very simple. It has 2 columns: "key"and "tagged". "Key" is an autoincremented id.
I am trying to update the "tagged" column depending on the "key". I am using ...
0
votes
1answer
51 views
mysql how to query list of posts and its multiple tags which are in different tables
What i have is:
I have a tables like images, tags, tag_names and downloads
In which images can have multiple tags and are in separate tables
downloads table will maintain the total downloads of an ...
1
vote
1answer
113 views
tag cloud with mysql
Is there any other way to make tag cloud from mysql without temporary tables?
mysql> explain wallpaper_keywords;
+--------------+-----------------------+------+-----+---------+----------------+
| ...
2
votes
1answer
92 views
mysql tag system
I need some help with a mysql query
I am using wordpresses tagging system with some tables of my own design
the idea is to pull back a list of items that have tags in common with the original post, ...
0
votes
3answers
66 views
Database design to assign specific tags to an item
I am trying to build a little system that would assign specific tags to an item, or a person to be precise. So, I have a list of persons and a list of tags. I need to assign 3 specific tags to each ...
0
votes
1answer
71 views
Implementing a tag system for my news system
I'm trying to build a tag system for my news system. I have finalized a table structure like this:
CREATE TABLE article_tags (
id int(11) unsigned NOT NULL auto_increment,
tag varchar (255) not null,
...
5
votes
2answers
712 views
PHP, MySQL, Efficient tag-driven search algorithm
I'm currenlty building a webshop. This shop allows users to filter products by category, and a couple optional, additional filters such as brand, color, etc.
At the moment, various properties are ...
1
vote
0answers
38 views
model design and storage for tags of an object [closed]
i want to design tag for a reading website.every one can tag a book,and the tag is not
public, for example,
a book called The C programming language
user A tags C, Programming
user B tags C, My ...
0
votes
1answer
99 views
Implementing tags in database schema [closed]
I'm implementing a tag scheme in an existing application. For the sake of simplicity, we can assume that the following table structure is used
table comments
-id
-name
table tags
id
name
table ...
0
votes
0answers
267 views
Tag Cloud and MySQL
I try to add a tag cloud to my site so i found this code one web here http://stevethomas.com.au/php/how-to-make-a-tag-cloud-in-php-mysql-and-css.html and i really like the idea of it because is simple ...
2
votes
2answers
173 views
How to speed up MySQL query: order by count
I have tried everything I could think of to speed up this query, but it still takes about 2.5 seconds.
The table is images_tags (~4 Million Rows):
Here is the table EXPLAIN:
Field Type ...
0
votes
1answer
54 views
Html user interface for tagging products
This is a PHP+MySQL project and I am looking for advice in building the interface for tagging products, I use 3 tables and I cant think of a way to alow the user to add new tags into the tags table in ...
0
votes
1answer
612 views
How to ignore duplicate rows when echoing mysql query result
I trying to make tag cloud system and i enter the tags in one table with "name" and "product_id".
I make that may have multiple same tags everyone for different product.
My problem is that when echo ...
2
votes
1answer
445 views
mysql replace last characters in string if matched
I have a table that has some rogue tags that need replacing
The offending string ends <tr> and needs replacing with </table>
Not all record are affected, so I need to find these and then ...
0
votes
2answers
143 views
Tooltip is broken when encountering apostrophe
I want to display links of images , and their title attribute are from a MySQL database :
for ($i=0; $i<$ret['cnt']; $i++)
{
$html .= "<td width='15'><a href='" . HTTP_MAIN . ...
0
votes
1answer
35 views
mysql and tag app structure - alternatives to 'not in' sub select statements
While thinking about the best mysql db structure for a web app I'm developing, that requires the use of tags for item classification, I have decided to pick, what seems to be the most common approach: ...
1
vote
1answer
131 views
Saving tags as a bit field in MySQL. With index?
I am trying to design a tag-like structure for my project using MySQL.
After reading this http://forge.mysql.com/wiki/TagSchema I feel very disappointed because the m2m table design requires so many ...
1
vote
1answer
90 views
MySQL - Making a (simple?) search engine with tags
I'm about to make a (simple?) search engine to our future website and I would like some advice regarding a question.
The contents on the website will have tags connected to them but I don't know how ...
0
votes
1answer
123 views
Database Design - Questions, Answers, Tags
I have been reviewing the questions and answers here: How do you recommend implementing tags or tagging ,
and I understand the general design of the database, but how does it work? For instance, say I ...
1
vote
2answers
41 views
Inserting multiple records
I have a string with tag names separated by comas ready for insertion into a MySQL table, for example:
$tags = " 'pigs','dogs','cats' "
I have a mySQL table called tags containing a tag_id and ...
0
votes
1answer
215 views
posting select option to mysql
this is my code:
mysql_query("INSERT INTO jokes (headline, text, type) VALUES ('{$_POST['headline']}','{$_POST['text']}', '{$_POST['type']}')") or die(mysql_error());
I want to post a select ...
1
vote
2answers
77 views
Select all tag assignments from latest 5 posts
I have three tables:
post (id) - has all the entries
tag (id) - has all the tags
assign (post_id,tag_id) - assigns tags to posts, may have multiple rows for a post
This is what I have so far:
...
1
vote
2answers
530 views
Instagram recent tag
So I'm working with the Instagram API and using the recent tag call. The problem is I just want photos from today. I looked through the docs and the only parameters you can pass to the api are ...
0
votes
1answer
235 views
text input (seperated by comma) mysql input as array
I have a form where I am trying to implement a tag system.
It is just an:
<input type="text"/>
with values separated by commas.
e.g. "John,Mary,Ben,Steven,George"
(The list can be as ...
0
votes
2answers
431 views
MYSQL/PHP tag search engine
I am implementing tags for finding pages and have essentially a 3 table structure, tags, pages and tagpages. For the menu system of the site, I'd like to have a small number of links map to tags to ...
0
votes
5answers
193 views
PHP: Select a value from an imploded array in MySQL
I have a tag system where the tags are stored inside a row as an imploded array like so:
"value1, value2, value3, etc..."
And I'm trying to make a tag search page but I have no idea how to convert it ...
0
votes
2answers
88 views
How to show the “most popular” tags
I have an input box where users can enter tags when they ask a question. They are separated by commas, like this:
test1, test2, test3, test4
My questions table structure is:
To show the tags of ...
0
votes
1answer
74 views
Querying an entry with multiple categories?
I want to have a picture gallery and each gallery will be marked with a set of tags, I want users to be able to search for any number of these tags and I'd like if it were somewhat efficient. I don't ...
0
votes
1answer
213 views
smart tagging project mysql php
I'm creating a photo tagging project using mysql and php, that not only just adds tags to photos but it also returns related tags that I have stored in the my database. I am almost done my project ...
3
votes
4answers
83 views
How to constrain tags between 3 tables
I'm working on a tags system, what it should do is you can have a query and selected tags, e.g. jquery and tags of javascript, library. It should only show related scripts with the query AND only that ...
0
votes
1answer
226 views
mysql select from one table with concat results from another table
So I need to select distinct values from one table, but join all the related values from another table but within the same query.
Basically I'm following the Toxi TagSystem Schema ...
0
votes
1answer
45 views
Get all tags with usage weight
I'm creating a custom tag system with php and mysql, using the Toxi mysql schema http://forge.mysql.com/wiki/TagSchema#Toxi (three tables, many to many realtionship).
I've seen a lot of examples how ...

