iptomar / Tech-Art-F

0 stars 0 forks source link

Funções Crud Imagens Slider #8

Closed rubeng07 closed 6 months ago

rubeng07 commented 6 months ago
rubeng07 commented 6 months ago

@NaiveDom Inserts necessários para a base de dados:

-- technart.slider definition

CREATE TABLE slider ( id int(11) NOT NULL AUTO_INCREMENT, titulo varchar(100) DEFAULT NULL, titulo_en varchar(100) DEFAULT NULL, conteudo mediumtext DEFAULT NULL, conteudo_en mediumtext DEFAULT NULL, imagem varchar(100) DEFAULT NULL, link varchar(500) DEFAULT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB AUTO_INCREMENT=6 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

INSERT INTO technart.slider (id, titulo, titulo_en, conteudo, conteudo_en, imagem, link) VALUES(2, 'Sobre o TECHN&ART', 'About TECHN&ART', '

Centro de investigação e desenvolvimento nos domínios da Salvaguarda do Património e da sua Valorização, experimental e aplicada.

', '

A research and development centre focussed on the safeguard and enhancement of heritage, both experimental and applied

', '65f8a293133ec_slider-index-1.jpg', NULL); INSERT INTO technart.slider (id, titulo, titulo_en, conteudo, conteudo_en, imagem, link) VALUES(3, 'Tecnologia e interdisciplinaridade ao serviço do Património', 'Technology and interdisciplinarity in service of Heritage', '

O TECHN&ART une investigadores/as das mais diversas áreas disciplinares presentes no Instituto Politécnico de Tomar, das TIC às artes, das ciências sociais às ciências naturais

', '

TECHN&ART brings together researchers from a variety of fields in the Polytechnic University of Tomar, from ICT to the arts, from the social sciences to natural sciences

', '65f8a374aa3ac_slider-index-2.jpg', NULL); INSERT INTO technart.slider (id, titulo, titulo_en, conteudo, conteudo_en, imagem, link) VALUES(4, 'Investigação e desenvolvimento em rede', 'Research and development in network', '

O TECHN&ART acolhe e coordena projetos de I&D numa ampla rede de parceiros nacionais e internacionais, na linha da frente da salvaguarda e valorização patrimoniais

', '

TECHN&ART hosts and leads R&D projects within a broad network of national and international partners, on the frontlines of heritage safeguard and enhancement

', '65f8a39dc252b_slider-index-3.jpg', NULL);