Results 1 to 4 of 4
  1. #1
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default What's wrong with this code?

    Fatal error: Call to undefined function: stripos() in /mounted-storage/home10/sub002/sc16051-AGLV/123/includes/parser.php on line 147

    Line 147:
    $flag = stripos($input[0],'iframe') === 1 ? '/__iframeON' : '';

    Lines Around it:
    ## Replace element ATTRIBUTE=URL, formatted as below
    /* Original regex: (?><[A-Z][A-Z0-9]*)(?>\s+[^>\s]+)*?\s*(?>(href|src|background)=)(?>([\\\'"])?)((?(?<=\\\')[^>\\\']+|(?(?<=")[^>"]+|[^> ]+)))(?(2)\\2|) */
    # [0] <element attr="value"
    # [1] attr
    # [2] ", ' or empty
    # [3] value
    function html_replaceElement($input) {
    // Flag iframes so we don't show the form more than once
    $flag = stripos($input[0],'iframe') === 1 ? '/__iframeON' : '';
    return str_replace($input[3],absoluteURL($input[3] . $flag),$input[0]);
    }
    Moved by NintendoNews (Forum Moderator) from Website Designing and Development: Please post in the correct section next time, thanks
    Last edited by timROGERS; 28-09-2007 at 06:36 PM.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


  2. #2
    Join Date
    Oct 2006
    Location
    Peterborough, UK
    Posts
    3,855
    Tokens
    216

    Latest Awards:

    Default

    PHP5+ only


    visit my internet web site on the internet
    http://dong.engineer/
    it is just videos by bill wurtz videos you have been warned

  3. #3
    Join Date
    Jan 2007
    Posts
    651
    Tokens
    0

    Default

    Isn't it strpos(); ?
    Last edited by Mr Macro; 28-09-2007 at 08:35 AM.
    James


    Connected to reality through a proxy server.

  4. #4
    Join Date
    Feb 2006
    Location
    Ontario Canada
    Posts
    4,587
    Tokens
    0

    Latest Awards:

    Default

    From Webhost: PHP v5.2.1

    changing it to strpos worked... thanks +rep
    Last edited by Colin-Roberts; 28-09-2007 at 10:26 AM.

    .:.:#14:.:. .:.: Impossible Is Nothing :.:. .:.: 845 Rep:.:.
    .:.: Stand up for what is right, even if you stand alone:.:.


Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •