Jump to content

ldigital

New Members
  • Posts

    4
  • Joined

  • Last visited

Profile Information

  • Gender
    Not Telling

ldigital's Achievements

Newbie

Newbie (1/5)

0

Reputation

  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!
  3. Hi, I have just installed an article management script on my website, its working fine & everything. Basically it handles articles, adding them to categories etc. But it only allows text in the articles, I want to be able to add html in the articles, so that I can add pictures & links etc Is there any way that I can change this? This is probably a really simple question, but I have only just got started with php Any help would be really 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.