I use file_get_contents(); to get full source page for a website. Sometimes there are some content like 'product details' or 'reviews' that not showing until you click on button. is there any way to get these content?
my simple code.
$str1= file_get_contents("https://www.google.com");
echo $str1 ;