My modem/router has a web interface where you can press a button to connect to ISP if connection drops. This is a manual process. The web interface has a huge amount of javascript and I am not a javascript expert. The HTML for the reconnect button looks like:
<a href="javascript:do_apply(1);" id="connect_btn" class="btn" width="70%">
I need to "press" this button from a PHP program on my home network using cURL. Is there a way to form the URL so this button is "pressed"? Thanks.
<a href="javascript:do_apply(1);" id="connect_btn" class="btn" width="70%">
I need to "press" this button from a PHP program on my home network using cURL. Is there a way to form the URL so this button is "pressed"? Thanks.