How to read data wifi ESP8266 with command "+ISP"

Hi, Good evening, we are working with a local server hosted on the pc where the php throws a response with two values. When performing the AT commands on the serial port, we get the information hosted in the php, but when performing the same steps by code we receive nothing. We are connecting the Rx and Tx ports of the ESP8266 to the Arduino ports 0 (Rx) and 1 (Tx). attached we send the images of the code and the answer by the serial port.

We need help urgently, because we have to deliver the project as soon as possible.

Don't post screenshots of text! That is very unhelpful. It is almost never appropriate to post screenshots but in some cases it is helpful to post images. You should attach and embed the image following these instructions:
http://forum.arduino.cc/index.php?topic=364156

Please post your full sketch. If possible you should always post code directly in the forum thread as text using code tags (</> button on the toolbar). This will make it easy for anyone to look at it, which will increase the likelihood of you getting help. If the sketch is longer than the forum will allow then it's ok to add it as an attachment.

portupache:
We are connecting the Rx and Tx ports of the ESP8266 to the Arduino ports 0 (Rx) and 1 (Tx).

You need to connect Rx to Tx and Tx to Rx.

this is the code that we are using

#include <SoftwareSerial.h>
SoftwareSerial SerialESP8266(0,1); // RX | TX

void setup()
{ Serial.begin(9600);
SerialESP8266.begin(9600);
Serial.println("AT");
delay(1000);
if(SerialESP8266.find("OK"))
Serial.println("Respuesta AT correcto");
else
Serial.println("Error en ESP8266");

}

void loop()
{
// Repetir lo recibido por el ESP8266 hacia el monitor serial

Serial.println("AT+CIPSTART="TCP","192.168.43.158",80");
delay(8000);

if(SerialESP8266.find("CONNECT"))
{
Serial.println("AT+CIPSEND=35");
delay(1500);
if(SerialESP8266.find(">"))
Serial.println("GET /automatizacion1.php");
delay(5000);

if(SerialESP8266.read("+IPD,"))

{delay(3000);
int conexionID = SerialESP8266.read();
Serial.println(conexionID);
}
}
}

Please use code tags (</> button on the toolbar) when you post code or warning/error messages. The reason is that the forum software can interpret parts of your code as markup, leading to confusion, wasted time, and a reduced chance for you to get help with your problem. This will also make it easier to read your code and to copy it to the IDE or editor. If your browser doesn't show the posting toolbar then you can just manually add the code tags:
[code]``[color=blue]// your code is here[/color]``[/code]
Using code tags and other important information is explained in the How to use this forum post. Please read it.

Please always do a Tools > Auto Format on your code before posting it. This will make it easier for you to spot bugs and make it easier for us to read. If you're using the Arduino Web Editor you will not have access to this useful tool. I recommend you to use the standard IDE instead.

Please remove unnecessary blank lines from your code before posting to the forum. One or two to separate code into logical sections is fine but large spaces for no reason just make for more scrolling when we're trying to read your code.

Why are you using software serial on the hardware serial pins?

Have you set the ESP8266 to communicate at 9600 baud? The default is 115200.

#include <SoftwareSerial.h>
SoftwareSerial SerialESP8266(0,1); // RX | TX

That is too stupid for words.

You can NOT do SoftwareSerial on the hardware serial pins while also doing hardware serial on those pins.

We have seen that in other codes use the digital ports 3 and 2 but when I try to use them, the connection throws error and does not send or receive anything. Did you want to know if I'm missing something? I do not have much knowledge with the Arduino.

the connection throws error

What? Throw it back, then.

What the heck does that even mean?

we want to use the digital pins 3 and 2 but when we try we get an error when we try to connect with the database, we can only connect through the serial monitor using pins 0 and 1 using AT commands

we want to use the digital pins 3 and 2

Then do so.

but when we try we get an error when we try to connect with the database

Post the code AND a picture proving that you have properly connected the device to pins 2 and 3.