Click here to Skip to main content
15,881,424 members
Articles / Desktop Programming / Win32

Making a Search Engine

Rate me:
Please Sign up or sign in to vote.
4.94/5 (51 votes)
3 May 2013CPOL6 min read 239.5K   27.6K   124  
This article discusses the making of a search engine.
 <html>
<head>
  <title>RemoteDesktop</title>
</head>
<link href="main_style.css" rel="stylesheet" type="text/css" />
<body>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3/jquery.min.js"></script>
<div class=header>
<? //header codeing 
  require_once("top_nav.php");
  headercode::getCode('Add your website to  be crawled');
?>
</div>
<script>
function add(){
	var url = $('#url').val();
	$.post('lock.php', {link:url}, function(data){			
		$('#feedback').html(data);
	});
}

</script>
<div class=content style="background-color: #A7E1F7;padding-top:100px;padding-left:100px">

	<h2>Url of your web site:</h2> <input id="url" type=text name=url value="http://" style="width:20%"></input>
	 <input type=submit value=Add onclick="add()">
	<div id="feedback" style=""padding-top: 20;font-size: 30;color: gray;></div>
</div>

</div>

</body>
</html>

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Student
India India
I just love coding. But due to my studies it became very tough for me to manage both.

Comments and Discussions