Goins Posted March 12, 2008 Share Posted March 12, 2008 I need help with a script. I have a script that can upload images. after it uploads it shows the link for that image. i want to be able to add keywords on that page. any idea Link to comment https://forums.phpfreaks.com/topic/95840-tags-and-keywords/ Share on other sites More sharing options...
craygo Posted March 12, 2008 Share Posted March 12, 2008 I know this has nothing to do with your problem, but what are you doing with my last name???? What kind of keywords you looking to add?? just the filenames of the pictures you uploaded?? Link to comment https://forums.phpfreaks.com/topic/95840-tags-and-keywords/#findComment-490638 Share on other sites More sharing options...
Goins Posted March 12, 2008 Author Share Posted March 12, 2008 Hahahaa.. Its My Name. Lol By the way are you the creator of Craygo Craige List Poster? LIke Photobucket after you upload it has a place for title and description. Mine Has MultiUpload and it uploads fine and it go to the page with links after its done. Link to comment https://forums.phpfreaks.com/topic/95840-tags-and-keywords/#findComment-490840 Share on other sites More sharing options...
deadonarrival Posted March 12, 2008 Share Posted March 12, 2008 I think what you need to do is setup two mysql tables with this structure table: image_keyword image_name varchar(255) [indexed] [primary key] keyword_id int(10) [indexed] [primary key] table: keyword id int(10) [primary key] word varchar(50) [unique] [indexed] If you upload any info about the image into a database, replace image_name with image_id where image_id is the id in the images table. Then you can just add new keywords, or create a link in the linking table between the image and keyword. Because the fields you might search by are indexed, you can very quickly search for all images with a set keyword, or all keywords for a set image Link to comment https://forums.phpfreaks.com/topic/95840-tags-and-keywords/#findComment-490886 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.