It is a web server. It builds a web page in html to display on a browser and which lists all previous messages entered into it (max 30) and allows the user to add a new message.
Can you provide a link to where you got the code.
It looks like you have to find the network it creates (MSG_AP) using say your smartphone and join that network.
Once you do that you enter the IP address 192.168.1.4 in the web browser.
Did you succeed in compiling and loading that code from post #1 onto your Uno R4 ?
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:5:1: error: 'WiFiServer' does not name a type
WiFiServer server(80);
^~~~~~~~~~
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino: In function 'void setup()':
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:14:8: error: 'class CWifi' has no member named 'softAP'; did you mean 'softAPIP'?
WiFi.softAP(ssid, password);
^~~~~~
softAPIP
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:16:8: error: 'class CWifi' has no member named 'softAPConfig'; did you mean 'softAPIP'?
WiFi.softAPConfig(apIP, apIP, IPAddress(255, 255, 255, 0));
^~~~~~~~~~~~
softAPIP
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:20:3: error: 'server' was not declared in this scope
server.begin();
^~~~~~
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:20:3: note: suggested alternative: 'perror'
server.begin();
^~~~~~
perror
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino: In function 'void loop()':
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:26:3: error: 'WiFiClient' was not declared in this scope
WiFiClient client = server.available();
^~~~~~~~~~
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:26:3: note: suggested alternative: 'DNSClient'
WiFiClient client = server.available();
^~~~~~~~~~
DNSClient
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:27:7: error: 'client' was not declared in this scope
if (client) {
^~~~~~
C:\Users\zali\Desktop\sketch_oct15a\sketch_oct15a.ino:27:7: note: suggested alternative: 'llrint'
if (client) {
^~~~~~
llrint
Multiple libraries were found for "WiFi.h"
Used: C:\Users\zali\AppData\Local\Arduino15\packages\arduino\hardware\renesas_uno\1.0.4\libraries\WiFiS3
Not used: C:\Users\zali\Documents\Arduino\libraries\WiFiNINA
exit status 1
Compilation error: 'WiFiServer' does not name a type
From the link you have given in post #8 I cannot find the code basis which you have used. All the examples there use the following WiFi library: WiFiS3.h
Why not start with say the "simple web server" example in your link, get that working, then start modifying it ?