Posts by LuDi Carvalho • 26 points
6 posts
-
0
votes1
answer31
viewsQ: How to ban a DDL action on oracle
I want to do a Rigger that prohibits any DML operation on a given table. In case these are the parameters: between 20:00 to 06:00, and Sunday all day. CREATE OR REPLACE TRIGGER TG_HORARIO BEFORE…
-
0
votes1
answer51
viewsA: Continue searching in Mysql after given ID
Try adding in query: Where ID > 1584
-
0
votes1
answer1119
viewsA: Separate the registration form by category
Wrap the fields you want to separate, with the tag <fieldset></fieldset>. To put a caption as in the example above use <legend>Dados de Login</legend> which should be inside…
-
0
votes1
answer236
viewsQ: UPLOAD files via php and mysql
I am trying to make a database for personal use that is to upload boleto and then voucher, but I do not know what I am doing wrong because in Mysql there is only a binary file and not the photo or…
-
0
votes0
answers188
viewsQ: How to insert a variable value in the PHP Header?
My intention is that when you delete a bill, it goes back to the index page of notes referring to that work. Code: { $id = $_POST['id']; $ok = $_GET['obra']; //Delete do banco: $pdo =…
-
0
votes1
answer122
viewsQ: Difficulty listing a invoice and products using PHP and Mysql
I’m having trouble with this page right below. My difficulty is in displaying the products of a specific invoice. Because in statment SELECT * FROM produtos WHERE = ? does not return anything! But…