Posts by Vitor Hallais • 73 points
5 posts
-
3
votes2
answers1347
viewsA: Inserting data using PHP array
The fact is that you added the input with name to become an array (name='codigo_type[]').. with this, in $_POST, it will give you an array variable.. That’s why in your Insert/update you will have…
-
0
votes4
answers1464
viewsA: Bootstrap how to print table background colors?
In the call of your css, see if you declared the "media" Example: <link href='css/bootstrap.min.css' rel='stylesheet' type='text/css' media='all'>
bootstrap-3answered Vitor Hallais 73 -
1
votes2
answers244
viewsA: query sql does not work
do not know which bank your commands can change but follow example: select * from prt_license WHERE TRIM(UPPER(organization_type)) = TRIM(UPPER('commercial'));
-
0
votes1
answer242
viewsA: Cast parameter Postgresql function DEFAULT null::int
By default if you do not put the "Default" it will already consider as default null friend... no need to put the "default null"...
postgresqlanswered Vitor Hallais 73 -
3
votes3
answers145
viewsQ: How to have id security exposed in links - PHP + Javascript
PHP language. I have a grid where I have in each row buttons to edit and delete that record with javascript actions passing the id of that record to effect the action. My problem is related to…