samrat Posted March 12, 2009 Share Posted March 12, 2009 Hello, Can you please suggest me how to search the files which I've uploaded to my website. Here is my upload table, CREATE TABLE upload ( FileID Int Unsigned Not Null Auto_Increment, ProjectName VarChar(255) Not Null, Description VarChar(255) Not Null, FileName VarChar(255) Not Null Default 'Untitled.txt', FileMime VarChar(50) Not Null Default 'text/plain', FileSize BigInt Unsigned Not Null Default 0, Path LongBlob Not Null, Created DateTime Not Null, PRIMARY KEY (FileID) ); I'll be grateful if you give the code for search. Quote Link to comment https://forums.phpfreaks.com/topic/149062-searching-uploaded-files-from-mysql-database/ Share on other sites More sharing options...
.josh Posted March 12, 2009 Share Posted March 12, 2009 http://www.phpfreaks.com/tutorial/php-basic-database-handling Quote Link to comment https://forums.phpfreaks.com/topic/149062-searching-uploaded-files-from-mysql-database/#findComment-782754 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.