Php versions – MySQL item and its attributes in a single query
I have created MySQL data model to store content along with its custom attributes/field. Below is a simplified version of it. One for storing content: CREATE TABLE `cms_content` ( `id` int(11) NOT NULL, `title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `content_type_id`…