parent
b1baffa3d5
commit
e62c4ece90
@ -0,0 +1,15 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
$f = file_get_contents('term.html'); |
||||||
|
|
||||||
|
$f = str_replace('%screenData%', |
||||||
|
'{ |
||||||
|
"w": 26, "h": 10, |
||||||
|
"x": 0, "y": 0, |
||||||
|
"cv": 1, |
||||||
|
"screen": "70 t259" |
||||||
|
}', $f); |
||||||
|
|
||||||
|
$f = str_replace('window.location.host', '"192.168.0.15"', $f); |
||||||
|
|
||||||
|
echo $f; |
@ -0,0 +1,13 @@ |
|||||||
|
<?php |
||||||
|
|
||||||
|
$f = file_get_contents('wifi.html'); |
||||||
|
|
||||||
|
$f = str_replace('%StaSSID%', 'Chlivek', $f); |
||||||
|
$f = str_replace('%StaIP%', '192.168.0.15', $f); |
||||||
|
$f = str_replace('%WiFiModeNum%', '1', $f); |
||||||
|
$f = str_replace('%WiFiMode%', 'Client', $f); |
||||||
|
$f = str_replace('%WiFiChannel%', '1', $f); |
||||||
|
|
||||||
|
$f = str_replace('window.location.host', '"192.168.0.15"', $f); |
||||||
|
|
||||||
|
echo $f; |
Loading…
Reference in new issue