Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~205 People Reached
Favorite Forums
Favorite Tags
Member Avatar for yesiamchamp

Hi, I would like to know, how to translate from english to any language in php. Thanks

Member Avatar for chrishea
0
63
Member Avatar for yesiamchamp

Hi, I want to implement the layout, which have been implemented by a developer on myspace. You can have a look at the panel by visiting this link -> [URL="http://profile.myspace.com/Modules/Applications/Pages/Canvas.aspx?appId=158486"]Myspace[/URL] I want to implement it in jquery and one more thing, the panel should load after the page has been …

Member Avatar for scrappedcola
0
86
Member Avatar for yesiamchamp

<?php session_start(); $_SESSION['number']=$_POST["number"]; $userAgent = "Googlebot/2.1 (+http://www.google.com/bot.html)"; $target_url="http://example.com/".$_SESSION['number']; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL,$target_url); curl_setopt($ch, CURLOPT_USERAGENT, $userAgent); curl_setopt($ch, CURLOPT_FAILONERROR, true); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true); curl_setopt($ch, CURLOPT_COOKIEFILE, "cookiefile"); curl_setopt($ch, CURLOPT_COOKIEJAR, "cookiefile"); # SAME cookiefile curl_setopt($ch, CURLOPT_AUTOREFERER, true); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); curl_setopt($ch, CURLOPT_TIMEOUT, 0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); $html= curl_exec($ch); echo $html; $dom = new DOMDocument(); …

0
56