Posts

Showing posts from 2009

What is PageRank and how to increase link popularity?

Image
What is PageRank and how to increase link popularity? How to improve Google PageRank   Google Search uses PageRank (PR) as a link analysis algorithm to classify web pages in search results (SERP).The importance of a page is determined by the quality and quantity of links pointing to it.   The importance of web pages is measured through PageRank.   Backlinks are the basis for PageRank, which evaluates the number and quality of links to a page and assigns a value to it. The ranking of pages with more high-quality links is higher because they are considered more important.   PageRank update history During their time studying at Stanford University, Larry Page and Sergey Brin, co-founders of Google, created PageRank in 1997. Both Larry Page, its co-founder, and the term 'web page' are the inspiration for its name.   [Google Ads Section] Why PageRank and search engine ranking important ?   A search engine attempted to assess a web page's authori...

PHP->IMAGE UPLOAD : (UPLOAD IMAGES using Move upload function)

Image
PHP->IMAGE UPLOAD : (UPLOAD IMAGES using Move upload function)    $c1 = rand(0,9);$c2 = rand(0,9);$c3 = rand(0,9);$c4 = rand(0,9); $rand = $c1.$c2.$c3.$c4; $date = mktime(); if($image_file1!='') { move_uploaded_file($_FILES['fileupload1']['tmp_name'],'thumb/'.$rand.$_FILES['fileupload1']['name']); } if($image_file1!='') { $path1 = 'thumb/'.$rand.$_FILES['fileupload1']['name']; } php?> PHP->JAVASCRIPT VALIDATION : (for listbox checked) var Item=form.template.selectedIndex; var Result=form.template.options[Item].value; if(Result=="") { alert("select anyone of the template");form.template.focus();return false; } [Google Ads Section]