Follow-up of visualization (pop up)

0

Hello,

I'm having a question about HTML, I need to control how often a pop up pops up, it's scheduled to open every time a computer starts.

I need to throw this data into an excel (because of workplace guidelines), every time it opens on the computer, excel receives a warning and adds a +1 to the table, but I do not know if it's possible. Does anyone know if there is a solution in PHP or JavaScript?

    
asked by anonymous 10.11.2017 / 14:56

1 answer

0

I do not know what popup is saying, if it is some modal or if it is an alert, but it would be something simple to do the verification. Another thing I did not understand is:

  

It is scheduled to open every time a computer starts.

That means what? What popup is not on the web? I did not get it right.

The check would look something like this:

$PopupAbriu = 0;
function PopupAbrir(){
   //Aqui o que mais a função vai fazer
   $PopupAbriu += 1;
}

Then every time the system starts, you will have to start this function too, with PopupAbrir() . But, like I said, it was kind of open-ended what you really want.

Abs;

    
10.11.2017 / 18:23