Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7033447
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 28, 20262026-05-28T01:04:01+00:00 2026-05-28T01:04:01+00:00

I have different files such as example.html, example2.html and so on. I want to

  • 0

I have different files such as example.html, example2.html and so on. I want to search any word inside these files and display information on site. Is it possible without MySQL (file_get_contents) if yes and how? Or is there convenient way with mysql?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-28T01:04:01+00:00Added an answer on May 28, 2026 at 1:04 am

    Ok, I suppose you want to search inside a web page very much like what cntrl+f provides.
    So this can be done by using java-script. For a demo, make a html file, paste in the following code and check how will it work.

    <html>
        <head>
        </head>
        <body>
        my name is amit yadav, type amit to search
        <script>
            <!-- Hide from old browsers
            var TRange = null;
            var dupeRange = null;
            var TestRange = null;
            var win = null;
            var nom = navigator.appName.toLowerCase();
            var agt = navigator.userAgent.toLowerCase();
            var is_major   = parseInt(navigator.appVersion);
            var is_minor   = parseFloat(navigator.appVersion);
            var is_ie      = (agt.indexOf("msie") != -1);
            var is_ie4up   = (is_ie && (is_major >= 4));
            var is_not_moz = (agt.indexOf('netscape')!=-1)
            var is_nav     = (nom.indexOf('netscape')!=-1);
            var is_nav4    = (is_nav && (is_major == 4));
            var is_mac     = (agt.indexOf("mac")!=-1);
            var is_gecko   = (agt.indexOf('gecko') != -1);
            var is_opera   = (agt.indexOf("opera") != -1);
    
    
            //  GECKO REVISION
    
            var is_rev=0
            if (is_gecko) {
                temp = agt.split("rv:")
                is_rev = parseFloat(temp[1])
            }
    
    
            //  USE THE FOLLOWING VARIABLE TO CONFIGURE FRAMES TO SEARCH
            //  (SELF OR CHILD FRAME)
    
            //  If you want to search another frame, change from "self" to
            //  the name of the target frame:
            //  e.g., var frametosearch = 'main'
    
            //var frametosearch = 'main';
            var frametosearch = self;
    
    
            function search(whichform, whichframe) {
    
                //  TEST FOR IE5 FOR MAC (NO DOCUMENTATION)
    
                if (is_ie4up && is_mac) return;
    
                //  TEST FOR NAV 6 (NO DOCUMENTATION)
    
                if (is_gecko && (is_rev <1)) return;
    
                //  TEST FOR Opera (NO DOCUMENTATION)
    
                if (is_opera) return;
    
                //  INITIALIZATIONS FOR FIND-IN-PAGE SEARCHES
    
                if(whichform.findthis.value!=null && whichform.findthis.value!='') {
    
                    str = whichform.findthis.value;
                    win = whichframe;
                    var frameval=false;
                    if(win!=self)
                    {
    
                        frameval=true;  // this will enable Nav7 to search child frame
                        win = parent.frames[whichframe];
    
                    }
    
    
                }
    
                else return;  //  i.e., no search string was entered
    
                var strFound;
    
                //  NAVIGATOR 4 SPECIFIC CODE
    
                if(is_nav4 && (is_minor < 5)) {
    
                    strFound=win.find(str); // case insensitive, forward search by default
    
                    //  There are 3 arguments available:
                    //  searchString: type string and it's the item to be searched
                    //  caseSensitive: boolean -- is search case sensitive?
                    //  backwards: boolean --should we also search backwards?
                    //  strFound=win.find(str, false, false) is the explicit
                    //  version of the above
                    //  The Mac version of Nav4 has wrapAround, but
                    //  cannot be specified in JS
    
    
                }
    
                //  NAVIGATOR 7 and Mozilla rev 1+ SPECIFIC CODE (WILL NOT WORK WITH NAVIGATOR 6)
    
                if (is_gecko && (is_rev >= 1)) {
    
                    if(frameval!=false) win.focus(); // force search in specified child frame
                    strFound=win.find(str, false, false, true, false, frameval, false);
    
                    //  The following statement enables reversion of focus 
                    //  back to the search box after each search event 
                    //  allowing the user to press the ENTER key instead
                    //  of clicking the search button to continue search.
                    //  Note: tends to be buggy in Mozilla as of 1.3.1
                    //  (see www.mozilla.org) so is excluded from users 
                    //  of that browser.
    
                    if (is_not_moz)  whichform.findthis.focus();
    
                    //  There are 7 arguments available:
                    //  searchString: type string and it's the item to be searched
                    //  caseSensitive: boolean -- is search case sensitive?
                    //  backwards: boolean --should we also search backwards?
                    //  wrapAround: boolean -- should we wrap the search?
                    //  wholeWord: boolean: should we search only for whole words
                    //  searchInFrames: boolean -- should we search in frames?
                    //  showDialog: boolean -- should we show the Find Dialog?
    
    
                }
    
                if (is_ie4up) {
    
                    // EXPLORER-SPECIFIC CODE revised 5/21/03
    
                    if (TRange!=null) {
    
                        TestRange=win.document.body.createTextRange();
    
    
    
                        if (dupeRange.inRange(TestRange)) {
    
                            TRange.collapse(false);
                            strFound=TRange.findText(str);
                            if (strFound) {
                                //the following line added by Mike and Susan Keenan, 7 June 2003
                                win.document.body.scrollTop = win.document.body.scrollTop + TRange.offsetTop;
                                TRange.select();
                            }
    
    
                        }
    
                        else {
    
                            TRange=win.document.body.createTextRange();
                            TRange.collapse(false);
                            strFound=TRange.findText(str);
                            if (strFound) {
                                //the following line added by Mike and Susan Keenan, 7 June 2003
                                win.document.body.scrollTop = TRange.offsetTop;
                                TRange.select();
                            }
    
    
    
                        }
                    }
    
                    if (TRange==null || strFound==0) {
                        TRange=win.document.body.createTextRange();
                        dupeRange = TRange.duplicate();
                        strFound=TRange.findText(str);
                        if (strFound) {
                            //the following line added by Mike and Susan Keenan, 7 June 2003
                            win.document.body.scrollTop = TRange.offsetTop;
                            TRange.select();
                        }
    
    
                    }
    
                }
    
                if (!strFound) alert ("String '"+str+"' not found!") // string not found
    
    
            }
            // -->
        </script>
    
        <!--  EXAMPLE FORM OF FIND-IN-PAGE SEARCH USING SUBMIT (ALLOWING 'ENTER/RETURN' KEY PRESS EVENT) -->
        <form name="form1" onSubmit="search(document.form1, frametosearch); return false"><input type="text" name="findthis" size="15" title="Press 'ALT s' after clicking submit to repeatedly search page"> <input type="submit" value="Find in Page" ACCESSKEY="s"></form>
        </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have some folder with different files. I want to use something like this:
I have 2 different webapps (package into different war files) which needs to share
I have a small problem with Smarty... I have two different template files in
I have two entities, each from a different database and therefore different edmx files.
I have a system which is receiving log files from different places through http
I have a source directory that includes a mix of different languages and files.
Apparently I can't move files on different volumes using Directory.Move. I have read that
I have several files that are in several different languages. I thought they were
I have two XML files with two different XSD schemas and different namespaces. They
I have to read data from some files and insert the data into different

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.