From the topic itself, I need to compare a string to a line of text inside a textarea.
Here's the output i got from php from my linux server which i have program that prints for devices that are available and i put it inside a textarea.
Device -------------- | NAme ------------------- | Status
/dev/ttyS0-----------| Profilic |-------------------|Available
/dev/ttyUSB0 -------| Test | ---------------------|Busy
Now I have an array of devices..
$devices = array("/dev/ttyS0", "/dev/ttyUSB0", "/dev/ttyUSB1");
Now how can i compare my array of strings if the following devices in the textarea exist?
Say if /dev/ttyS0 found in the textarea then it returns true because i have /dev/ttyS0 in my array of strings.
Sample code how i get output from linux to php.
echo "<textarea>";
echo stream_get_contents($pipes[1]);
echo "</textarea>";
What i Want to happen.(mockup code)
if(/dev/ttyS0 == in the textarea){
enable this part of code
}
if(/dev/ttyUSB0 == in the textarea){
enable this part of code
}
and so on....
How can i do that?..