Posts by Rafael Braga • 257 points
4 posts
-
1
votes1
answer369
viewsA: Error in CPF validation
You are not entering the return of the direct method in your database no matter what it returns, validate Cpf before giving an input in the table. and a Voce observation could replace all this if if…
androidanswered Rafael Braga 257 -
12
votes3
answers10773
viewsQ: Is it possible to use Java pointers?
In the C language we can use ponteiros as follows: int *ponteiro, teste; ponteiro = &teste; And in Java there is some alternative?
-
10
votes3
answers1001
viewsQ: Use OR operator in a PHP CASE
How to use the operator or in a control structure switch? Example switch ($options) { case 1 || case 2: echo "Valor de opção 1 e 2"; break; case 3: echo "Valor de opção 3"; break; }…
-
2
votes1
answer180
viewsQ: Get value from a radio in jquery cakephp
In my code I have a radio and would like to get the option selected in a variable in my jquery function. Button input: <?php echo $this->Form->input('attendance_status_id', array( 'type'…