stooged / PI-Pwn

pppwn
439 stars 81 forks source link

Web Server Background #109

Closed Doyle4 closed 3 months ago

Doyle4 commented 3 months ago

Not coded a Pi before, Im more a download and flash person.

How do I go about adding my own background image? Maybe also custom buttons, had a Google and most results come back as use CSS, but not php.

Thanks.

stooged commented 3 months ago

all php is used for is to run commands on the pi then parse those commands and print html to the document.

if you look at the php files you will see most of it is just html being printed using the print() function of php so you can edit that html code and php will print it.

Doyle4 commented 3 months ago

Thanks