37603 all results found.

Request time (Page generated in 0.0762 seconds.)

Node.js and Raspberry Pi

https://www.w3schools.com//nodejs/nodejs_raspberry.../nodejs/nodejs_raspberrypi.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 540 Last Update : 2026-09-14 09:31:43

Node.js Tutorial

https://www.w3schools.com//nodejs/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 468 Last Update : 2026-09-14 06:14:16

ASP Tutorial

https://www.w3schools.com//asp/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 505 Last Update : 2026-09-14 07:44:38

Java Tutorial

https://www.w3schools.com//java/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 468 Last Update : 2026-09-14 07:40:46

Python Tutorial

https://www.w3schools.com//python/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 474 Last Update : 2026-09-14 08:17:14

PHP Tutorial

https://www.w3schools.com//php/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 493 Last Update : 2026-09-14 07:45:58

SQL Tutorial

https://www.w3schools.com//sql/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 488 Last Update : 2026-09-15 12:24:27

W3.JS HOME

https://www.w3schools.com//w3js/default.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 463 Last Update : 2026-09-14 09:59:44

AJAX Introduction

https://www.w3schools.com//js/js_ajax_intro.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 434 Last Update : 2026-09-14 08:30:03

JavaScript JSON

https://www.w3schools.com//js/js_json_intro.asp

.. Tutorials References Exercises Certificates Menu Search field × See More   NEW W3Schools app iOS & Android Start the adventure Sign In ★ +1 Get Certified Get Certified  My ..

Visits : 437 Last Update : 2026-09-14 10:00:18


Easy Web Search is engine to use inside a web site. Simple Crawling System is available to submit URLs and Links from submitted URL will be automatically added to search database when admin run crawling. Once crawling is done the links with their contents (Plain text from web link) will be available to search. If the total web site is linked to it's home page, you need jut give home page url to the sytem and run crawling once. You do not need to much work to implement a search system inside your web site.

Discover great features.


  • Responsive Search Page
  • Crawl Unlimited Pages
  • Link Submit for Crawling
  • Admin Area to Manage Links
  • Easy to Use in your web
  • Installation Documentatio Available
  • Full Page Search and Quick Search
  • Start Search from html Page
  • PHP / MySQL Based
  • Simple to Install
  • PHP 5 and PHP 7

Usage

PHP Code (Put This Code before <html> tag or at very begining of the page

<?php require_once('Connections/saha.php'); ?>
<?php require_once('inc-main.php'); ?>
<?php require_once('inc.search.php'); ?>

HTML Header (Put this code within <head> to </head>)

<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="fonts/font-awesome/css/font-awesome.css" rel="stylesheet">
<link href="css/animate.css" rel="stylesheet">
<link href="css/style.css" rel="stylesheet">

HTML Body (with PHP embeded)

<div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="inqbox float-e-margins"> <div class="inqbox-content"> <div class="search-form"> <form action="" method="get"> <div class="input-group"> <input type="text" placeholder="Search Web" name="q" class="form-control input-lg" value="<?php echo @$cid; ?>"> <div class="input-group-btn"> <button class="btn btn-lg btn-primary" type="submit"> Search </button> </div> </div> </form> </div>...
.... Copy and Paste Entire Body from sample1.php ....