Posts by Luiz Miguel • 27 points
3 posts
-
0
votes1
answer400
viewsQ: Several CRUD in the same PHP project
Hello, I have a question about structuring a project, in case it is in PHP. Let’s say I have 3 CRUD to make, one would be products, the other customer and the last order. In that case, I would have…
-
0
votes1
answer45
viewsQ: Mysql syntax problem generated by Phpmyadmin
I have a problem when Myadmin generates a table creation script. The Script: CREATE TABLE `crud_ABC`.`cliente_ABC` ( `id` INT(10) NOT NULL AUTO_INCREMENT , `nome` VARCHAR(300) NOT NULL , `valor`…
-
2
votes1
answer269
viewsQ: Custom String Ordering
Hello, I have a problem, I need to sort a set of letters in alphabetical order, but the word order is customized from a specific order of letters. <?php // Pega o conteudo do arquivo texto.…