[NodeMCUv3]php & arduino sketch/ trasmit varible from my internet page to Node ?

[NodeMCUv3] is there a way i can trasmit varible from my internet page to NodeMCU v3 ? i managed to transmit it from Node to my PHP page by GET function but im not even sure how or waht to use to do other way any help is appriciated

Thanks in Advance and sorry for my bad english

Can some one give me atleast a Clue how to achive this by what function ? GET POST REQUEST ? or any lib i can use for this ? or theres no other way just local host and forwarding port public ?

Hi got pice of modified code but still not working as supposed too

#include <ESP8266WiFi.h>
#include <WiFiClient.h>

// WiFi information
const char WIFI_SSID[] = "SSID";
const char WIFI_PSK[] = "PASSWORD";

// Remote site information
const char http_site[] = "mywebpage.com";
const int http_port = 80;

// Pin definitions
const int LED_PIN = 5;

// Global variables
WiFiClient client;

void setup() {
  
  // Set up serial console to read web page
  Serial.begin(9600);
  Serial.print("Thing GET Example");
  
  // Set up LED for debugging
  pinMode(LED_PIN, OUTPUT);
  
  // Connect to WiFi
  connectWiFi();
  
  // Attempt to connect to website
  if ( !getPage() ) {
    Serial.println("GET request failed");
  }
}

void loop() {
  
  char d;
  // If there are incoming bytes, print them
  if ( client.available() ) {
    int c = client.read();
    Serial.print(c);Serial.println(" ");   //// no needed for now
  }


 if (d = 48){
    digitalWrite(LED_PIN, LOW);
  }
  else if (d = 49){
    digitalWrite(LED_PIN, HIGH);
  }
  
  // If the server has disconnected, stop the client and WiFi
  if ( !client.connected() ) {
    Serial.println();
    
    // Close socket and wait for disconnect from WiFi
    client.stop();
    if ( WiFi.status() != WL_DISCONNECTED ) {
      WiFi.disconnect();
    }
    
    // Turn off LED
    digitalWrite(LED_PIN, LOW);
    
    // Do nothing
    Serial.println("Finished Thing GET test");
   // client.println(c);
    while(true){
      delay(1000);
    }
  }
}

// Attempt to connect to WiFi
void connectWiFi() {
  
  byte led_status = 0;
  
  // Set WiFi mode to station (client)
  WiFi.mode(WIFI_STA);
  
  // Initiate connection with SSID and PSK
  WiFi.begin(WIFI_SSID, WIFI_PSK);
  
  // Blink LED while we wait for WiFi connection
  while ( WiFi.status() != WL_CONNECTED ) {
    //digitalWrite(LED_PIN, HIGH);
    //led_status ^= 0x01;
    delay(100);
  }
  
  // Turn LED on when we are connected
  //digitalWrite(LED_PIN, HIGH);
}

// Perform an HTTP GET request to a remote page
bool getPage() {
  
  // Attempt to make a connection to the remote server
  if ( !client.connect(http_site, http_port) ) {
    return false;
  }
  
  // Make an HTTP GET request
  client.println("GET /sender.php HTTP/1.1");
  client.print("Host: ");
  client.println(http_site);
  client.println("Connection: close");
  client.println();


 
  
  return true;
}

COM 3 gives me readings guessing in ASCii

72
84
84
80
47
49
46
49
32
50
48
48
32
79
75
13
10
68
97
116
101
58
32
83
97
116
44
32
49
49
32
70
101
98
32
50
48
49
55
32
49
53
58
49
50
58
50
50
32
71
77
84
13
10
83
101
114
118
101
114
58
32
65
112
97
99
104
101
13
10
88
45
80
111
119
101
114
101
100
45
66
121
58
32
80
72
80
47
53
46
53
46
51
53
13
10
67
111
110
116
101
110
116
45
76
101
110
103
116
104
58
32
55
48
13
10
67
111
110
110
101
99
116
105
111
110
58
32
99
108
111
115
101
13
10
67
111
110
116
101
110
116
45
84
121
112
101
58
32
116
101
120
116
47
104
116
109
108
13
10
13
10
32
60
104
116
109
108
62
10
9
60
104
101
97
100
62
32
10
9
60
116
105
116
108
101
62
49
60
47
116
105
116
108
101
62
10
9
60
47
104
101
97
100
62
10
9
60
98
111
100
121
62
10
9
60
47
98
111
100
121
62
10
60
47
104
116
109
108
62
10
49

the last numer is what im looking for in ASCii is number "1" ,my qestion is how i can extract it from there and put into varible so i can make if (mynumber=1) then or did i messd up evrything ?