Currently am working on a bookstore application. http://framzndesinz.com/demo/bookstore/index.php/books/responsivedesign Author(s): suzuki Takahashi, Ibrahim sejen I want sepearte hyperlink for the 2 authors show. It will be going to their respective author pages when click. The author page will be having a description about author,authors image gallery and list of books written by him. Please Help. Can anyone tell how can it be done.
Is it possible so that when we input the authors name it get automatically linked to profile page?
default_pages_bookslisting
(id
int(9) NOT NULL AUTO_INCREMENT,created
datetime NOT NULL,updated
datetime DEFAULT NULL,created_by
int(11) DEFAULT NULL,ordering_count
int(11) DEFAULT NULL,bookname
varchar(20) COLLATE utf8_unicode_ci DEFAULT NULL,genre
varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,book_poster
char(15)COLLATE utf8_unicode_ci DEFAULT NULL,release_date
int(11)DEFAULT NULL,book_details
longtext COLLATE utf8_unicode_ci,language
text COLLATE utf8_unicode_ci,authors
varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,PRIMARY KEY (id
)) – Planetariumdefault_pages_authors
(id
int(9) NOT NULL AUTO_INCREMENT,created
datetime NOT NULL,updated
datetime DEFAULT NULL,created_by
int(11) DEFAULT NULL,ordering_count
int(11) DEFAULT NULL,celb_name
varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL,celb_photo
char(15) COLLATE utf8_unicode_ci DEFAULT NULL,celb_profile
longtext COLLATE utf8_unicode_ci, PRIMARY KEY (id
) ) – Planetarium