All Questions

1
answer

What is the difference between the concept of static and dynamic typing and the concept of strongly and weakly typed? [duplicate]

There is some confusion about the concept of programming languages with static and dynamic typing and the concept of strongly and poorly typed programming languages. For example, by my understanding Python is a dynamic typed language...
asked on 06.11.2015 / 15:38
1
answer

How to consume a WebService SOAP with AngularJS?

My current application does the following process Angular <-> PHP <-> service.wsdl I discovered the possibility of deleting this PHP bridge, consuming directly the WebService SOAP, using angular-soap . But when...
asked on 25.11.2015 / 19:54
1
answer

What is the "behavior" attribute in CSS?

I have seen in some CSS codes made to work in the beautiful browser Internet Explorer the following attribute: img { behavior: url(ie_png.htc); } What is the purpose of this behavior ? Does it only work for Internet Explorer?...
asked on 10.12.2015 / 16:29
1
answer

Identify a specific part of the screen

Is it possible for me to identify a specific part of the screen with jquery and javascript? For example when passing by height y does it perform for me a function? I imagine something like this: var minha_altura = $(window).height(); var altur...
asked on 03.12.2015 / 12:23
1
answer

Why is the Stylus not identifying classes? [closed]

I have a problem with the Stylus. Compiling my code by Node sometimes gives a bug , it does not seem to identify the classes because of . generating the following error:    expected "indent", got "outdent" Note: There are hours th...
asked on 03.12.2015 / 14:03
1
answer

Login / Authentication with AngularJs and PHP

Well, I'm doing WebApp where I have a login page before accessing the app and inside the app I have some areas with restrictions. WebApp is running all right, but I ended up getting stuck in the process of logging in and authenticating....
asked on 23.09.2015 / 04:18
4
answers

Retrieve dynamic input and insert into bank with procedure

I'm having trouble inserting input data from a dynamic input. My procedure only inserts once, it follows my code where I get the data: $ddd = $_POST['ddd']; $userid = $_POST['userid']; $idusuario = $_POST['idusuario']; $telefo...
asked on 22.11.2015 / 00:10
4
answers

SQL query to retrieve all records from last month but up to the current day

Good morning, I need to know a% change from last month's job records to job records made this month. For this I need to compare with the current day, for example. If today was 10/15/2015 I need to count how many tasks were opened between 0...
asked on 30.10.2015 / 12:28
2
answers

How do I set a token in the header?

Well I use jwt to generate a token only because the example I was following did not show exactly how to collocate the token in the application header. Would anyone know how? Note: I'm using express. app.js // part of the main file app.use(f...
asked on 23.09.2015 / 04:46
1
answer

How to change this JSON object?

I have a problem with this: I am using CakePHP and sending JSON to a datagrid of EasyUI as follows: $rows = $this->Produto->find('all', array('fields' => array( 'id', 'codigo_produto', 'codigo_pedido' ))); $total = $this->Pr...
asked on 29.09.2015 / 15:02