পোস্টগুলি

মার্চ, ২০১৮ থেকে পোস্টগুলি দেখানো হচ্ছে

JS Learning Guideline

ছবি
JS Learning Guideline  codecademy - introduction-to-javascript All links Everyone Should Starts from below here:-  w3schools -> JS  [ 35 Days ] . Befor JS Form:                                            [ 7 days ]   + 30*7 = 210 push ups  JS Form:                                                      [1 day]       + 30*1 = 30 push ups  JS Objects                                                    [3 days]     + 30*3 = 90 push ups  JS Functions                                                [ 3 days ]    + 30*3 = 90 push ups  JS HTML Dom                                           [ 3 Days ]    + 30*3 = 90 push ups  JS HTML BOM                                          [ 3 Days ]    + 30*3 = 90 push ups  DOM & BOM                                             [ 1 Day  ]     + 30*1 = 30 push ups  JS AJAX                                                     [ 3 Days ]    + 30*3 = 90 push ups  JS JSON                                                      [ 3

Web Scraping With PHP

//Making User agent just like google which helps the browser to say which site visit $options = array ( 'http' => array ( 'method' => "GET" , 'headers' => "User-Agent: Nir003" )); $context = stream_context_create ( $options ); // allows you to parse html pages $doc = new DOMDocument(); // load full page in $doc variable //download the page @ $doc ->loadHTML(@ file_get_contents ( $url , false , $context )); Thats all! your page load into $doc as object 😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍😍 Now the data is yours ;) now do what ever you want with this scraped data. Like here i separate title from $doc : $title = $doc ->getElementsByTagName( "title" ); $title = $title ->item( 0 )-> nodeValue ; echo $title; // <title> Youtube(nodeValue) </title>

Crawler, Crawling, Scraping, Parsing by php

ছবি
Scraping:   Web scraping, web harvesting, or web data extraction is data scraping used for extracting data from websites. Web scraping software may access the World Wide Web directly using the Hypertext Transfer Protocol or through a web browser.   Wikipedia Important Links:  Web Scraping Protection: Everything You Wanted to Know (but were afraid to ask) So web scraping is easy? https://www.slideshare.net/TheVirendraRajput/web-scraping-in-python Some Image to understand Scraping: