random and garbage value from esp8266

i m getting this... please help me solve it..also my esp8266 blue and red led is constantly on..blue led blink from time to time.plz help...

nnected@´I @nt connected@´I @nt connected@´I @nt connected@´Started
con•�ÑÑI @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connectedp?number=nt connectednt connectedttp://automatedcarparking.000webhostapp.com/index.php?number=nt connectednt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt connected@´I @nt
Soft WDT reset

ctx: cont
sp: 3ffef590 end: 3ffef7d0 offset: 01b0

stack>>>
3ffef740: feefeffe feefeffe 3fff0bfc 40201cf9
3ffef750: 00000000 00000003 3ffe8437 40204bb0
3ffef760: feefeffe feefeffe feefeffe 3ffee79c
3ffef770: 3fffdad0 3ffee5ec 3ffee6e0 40203a81
3ffef780: 3ffe8434 3ffee5ec 00000001 feefeffe
3ffef790: 3fff00dc 40202fd8 3ffee6e0 40203a94
3ffef7a0: 3fffdad0 3ffee5ec 3ffee6e0 402020cd
3ffef7b0: feefeffe 00000000 3ffee794 402047d0
3ffef7c0: feefeffe feefeffe 3ffee7b0 40100718

this is the code for esp;;;;

#include <SoftwareSerial.h>
#include <ESP8266HTTPClient.h>
#include <ESP8266WiFi.h>
//SoftwareSerial ESP8266(6,8);
const char* ssid="An";
const char* password="xxx.1234";
const byte numChar=32;
char receivedChar[numChar];
boolean newData=false;
int value=0;
void setup()
{
Serial.begin(9600);
//ESP8266.begin(9600);
WiFi.begin(ssid,password);
delay(1000);
while(WiFi.status()==WL_CONNECTED)
{
Serial.print("connected");

}
while(WiFi.status()!=WL_CONNECTED)
{
Serial.print("nt connected");
char rc;
rc=Serial.read();
Serial.print("from esp"+rc);
}
}
void loop()
{
//void recvWithEndMarker();
//showNewNumber();
//void recvWithEndMarker()
//{
static byte ndx=0;
char endMarker='\n';
char cr='\r';
char rc;
while(Serial.available()>0 && newData==false)
{
rc=Serial.read();
Serial.print(rc);
if(rc!=endMarker && rc!=cr)
{
receivedChar[ndx]=rc;
value=value*10+receivedChar[ndx];
ndx++;
}
else if(rc==endMarker)
{
receivedChar[ndx]='\0';
ndx=0;
newData=true;
}
else if(rc=cr)
{

}
}
if(newData==true)
{
//String getData[1]=Serial.readString();
if(WiFi.status()==WL_CONNECTED)
{
//Serial.println("from esp "+receivedChar[ndx]);
HTTPClient http;
http.begin("http://automatedcarparking.000webhostapp.com/index.php?number="+value);
int httpCode=http.GET();
// Serial.print("posting");
newData=false;
http.end();
}
}
}

Prajuli940132:
this is the code for esp;;;;

#include <SoftwareSerial.h>
#include <ESP8266HTTPClient.h>
#include <ESP8266WiFi.h>
//SoftwareSerial ESP8266(6,8);

void setup()
{
Serial.begin(9600);

Hardware serial for ESP8266 is usually 115200 by default. If you have not reconfigured it, the baud rate could be your problem. It is not clear why you are using software serial.