Posts by Matheus Hernandes • 68 points
2 posts
-
1
votes2
answers186
viewsA: Taking image from Mysql
I would use two tables. A table containing product data: CREATE TABLE produtos( id INT PRIMARY KEY AUTO_INCREMENT, ... suas colunas aqui. ); and the other containing the images: CREATE TABLE…
-
4
votes2
answers646
viewsQ: Automatic PHP function
I need every day, the system sends shipping orders to the post office. How can I do this automatically, without needing any user to load the page or anything like that? I would use the same logic of…