Posts by Bananaz • 31 points
4 posts
-
0
votes0
answers45
viewsQ: Maintain code sequence after refresh
I would like to know how to maintain my command sequences after refreshing the page, because my javascript as soon as it is loaded acts as if it were the first time. The idea is to check a condition…
-
0
votes1
answer214
viewsQ: Chrome.tabs.executeScript does not work in the background
I would like when I click on the extension button to write on the console the title of the page. My current code is this: background js. chrome.browserAction.onClicked.addListener(function() {…
-
1
votes1
answer518
viewsA: Save an array from the form to the database
I haven’t programmed in php for a long time, but an idea would be to make a FOR for each request and save inside the array, and in the same way you can use it to display. ex: <?php $results =…
-
1
votes1
answer2251
viewsQ: C pointers treated in python
#include <stdio.h> #include <stdlib.h> #include <locale.h> int main() { setlocale(LC_ALL,""); int *x,valor,y; valor = 35; x = &valor; y = *x; printf("o endereço da variavel…