Jump to content

ldigital

New Members
  • Posts

    4
  • Joined

  • Last visited

Everything posted by ldigital

  1. Hi, I've been trying to write a script to check a webpage for a certain word and then load another webpage if it is found or repeat the check until it is found. This is what I have so far, but its still not working, anyone have any advice as to where I am going wrong? The script isn't looping if the word is not found. <?php //check for initial text $link = "https://mysite.com/text.php"; //run the link $content = file_get_contents($link); //The text on the page should say apples $needle = "apples"; if (strpos($content, $needle) === false) { //if it does not find the string, display the following echo "found"; } else { //else it found the string so proceed to the page header("Location: next.php"); } ?> Thanks!
  2. Hi, I am working on a PHP file and need it to open a URL and if there is a certain word or phrase on the web page then open a second URL. If the text is not there, then I need the first URL to continually open until the text is found. I would imagine this is pretty simple, something like an IF statement and a loop somewhere. But how do I do this? Any help would be greatly appreciated!
×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.