• 18-06-2013, 14:18:52
    #1
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <title>Google Resim</title>
    </head>
    <?php
    function dosyaIndir($url,$inecekDizin,$name){
      	$urlBilgisi = pathinfo($url);
    	$uzanti = strtolower($urlBilgisi['extension']);
    	$ism=$inecekDizin."/fmd_".$name."_".rand(1000,9999).".$uzanti";
    	$ch = curl_init($url);
    	$fopen = fopen($ism,'w');
        curl_setopt($ch, CURLOPT_HEADER, 0);
        curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
    	curl_setopt($ch, CURLOPT_FILE, $fopen);
    	curl_exec($ch);
        curl_close($ch);
    	fclose($fopen);
    	return $ism; }
    	
    function al($l){
    	$ch = curl_init();
    	curl_setopt($ch, CURLOPT_URL, "$l");
    	curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); // Allow redirection
    	curl_setopt($ch, CURLOPT_HEADER, 0);
    	curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
    	$a=curl_exec($ch);
    	curl_close($ch);
    	return $a; }
    
    	// Başlangıç
    	//https://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=resim&start=2&rsz=8
    	
    if(isset($_POST["kelime"]))
    {
    $kelime = ($_POST["kelime"]);
    $kelime2 = str_replace(" ","+", $kelime);
    $sayfa = ($_POST["sayfa"]);
    $sayi = $sayfa*8;
    $sayi2 = $sayi+8;
    ;
    $url = "http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=$kelime2&start=$sayi&rsz=8";
    $url2 = "http://ajax.googleapis.com/ajax/services/search/images?v=1.0&q=$kelime2&start=$sayi2&rsz=8";
    echo "<form method=post >
    		Kelime : <input type=text name=kelime value='$kelime'>
    		Sayfa : <input type=text name=sayfa value='$sayfa' size='1' >
    		<input type=submit value='Ara' name=arama ><br>
    		</form><br>";
    $a = al($url);
    $aa = al($url2);
    $b = explode("Gimage" ,$a);
    $bb = explode("Gimage", $aa);
    //echo "<pre>";
    //print_r($b);
    $s = 1;
    $ss = 9;
    foreach($b as $c=>$d){
    	  	if($c>0){
    		$e=explode("\",\"title",$d);
    		$f=explode("\"visibleUrl\":\"",$e[0]);
    		$nerden=$f[1];
    		$e=explode("\",\"url",$d);
    		$f=explode("\"unescapedUrl\":\"",$e[0]);
    		$resimUrl = $f[1];
    		
    		echo $s++." - $resimUrl <br>";
    		// echo "<br> Kaynak : http://$nerden<br>";
    		}
    		}
    		foreach($bb as $c=>$d){
    	  	if($c>0){
    		$e=explode("\",\"title",$d);
    		$f=explode("\"visibleUrl\":\"",$e[0]);
    		$nerden=$f[1];
    		$e=explode("\",\"url",$d);
    		$f=explode("\"unescapedUrl\":\"",$e[0]);
    		$resimUrl = $f[1];
    		
    		echo $ss++." - $resimUrl <br>";
    		// echo "<br> Kaynak : http://$nerden<br>";
    		}
    		}
    		}
    		else 
    		
    echo "
    		<form method=post >
    		Kelime : <input type=text name=kelime>
    		Sayfa : <input type=text name=sayfa value='0' size='1' >
    		<input type=submit value='Ara' name=arama ><br>
    		</form>
    		
    		";
    				
    		?>
    2 kere al fonksiyonunu kullanarak 2 farklı sayfayı çekiyorum.
    2 kere foreach yazmaktansa, hem 1 de hem 2. çektiğimde aynı işlemi yapmasını sağlayabilir miyim ?

    not : google images api sistemi tek seferde 8 tane foto veriyor. ben bunu 16 ya çıkarmak istiyorum.
  • 18-06-2013, 15:33:09
    #2
    Kimlik doğrulama veya yönetimden onay bekliyor.
    Yapılan aramada 16 adet sonuç döndürür. Oluşturduğum yapı üzerinden çalışmanıza devam edebilirsiniz. İyi çalışmalar

    <?php
    	
    	/*
    	 * SAINTX > Google Resim Botu
    	 *
    	 * @author: SAINTX
    	 * @web: http://saintx.net
    	 * @email: im[at]saintx[net]
    	 * @date: 18.06.2013
    	 */
    	
    	class SAINTX {
    		const AUTHOR = 'SAINTX';
    		const GOOGLE_IMAGES_API_URL = 'https://ajax.googleapis.com/ajax/services/search/images';
    		
    		public $results = null;
    		public $api_request_query_string = null;
    		public $api_request_url = null;
    		public $api_request_returned_contents = null;
    		
    		public function getResults() {
    			$this->buildApiRequestQueryString();
    			$this->buildApiRequstURI();
    			$this->getContent();
    			
    			foreach(end($this->api_request_returned_contents) as $result)
    				array_push($this->api_request_returned_contents[0], $result);
    			
    			array_pop($this->api_request_returned_contents);
    			$this->api_request_returned_contents = end($this->api_request_returned_contents);
    			
    			$this->results = $this->api_request_returned_contents;
    		}
    		
    		public function buildApiRequestQueryString() {
    			$this->api_request_query_string = array(
    				"q1" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 0 : ($_POST['sayfa'] * 8)),
    					"rsz=8"
    				),
    				"q2" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 1 : (($_POST['sayfa'] + 1) * 8)),
    					"rsz=8"
    				),
    			);
    		}
    		
    		public function buildApiRequstURI() {
    			$this->api_request_url = array(
    				"r1" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q1"]),
    				"r2" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q2"])
    			);
    		}
    		
    		public function getContent() {
    			$this->api_request_returned_contents = array(
    				json_decode($this->html($this->api_request_url["r1"]))->responseData->results,
    				json_decode($this->html($this->api_request_url["r2"]))->responseData->results
    			);
    		}
    		
    		public function html($url, $iconv=false, $iconv_in_charset='', $iconv_out_charset='') {
    			return ($iconv) ? iconv($iconv_in_charset, $iconv_out_charset, @file_get_contents($url)) : @file_get_contents($url);
    		}
    	}
    	
    	$BOT = new SAINTX;
    	
    ?><!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8" />
    		<title>.google resim botu</title>
    		<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/2.1.2/normalize.css" />
    		<style type="text/css">
    			html, body { margin: 0; padding: 1em; font-family: "Georgia" }
    			div.bosluk { width: 100%; height: 1em; clear: both }
    			h1 { margin: 0; padding: 0; font-weight: normal; font-size: 125%; text-decoration: underline }
    			a.url { font-size: 125%; color: #666666; text-decoration: none }
    			a.url:hover { text-decoration: underline; color: #000 }
    		</style>
    	</head>
    	<body>
    		<form method="post">
    			<label for="kelime">.kelime;</label>
    			<input type="text" name="kelime" id="kelime" />
    			<label for="sayfa">.sayfa;</label>
    			<input type="text" name="sayfa" id="sayfa" value="1" />
    			<button type="submit">.getir</button>
    		</form><?php if($_POST): $BOT->getResults(); ?>
    		<div class="bosluk"></div>
    		<div id="sonuclar">
    			<h1>.sonuclar</h1>
    			<div class="bosluk"></div><?php foreach($BOT->results as $result): ?>
    			<img src="<?=$result->url;?>" width="160" height="160" />
    			<br />
    			<a href="<?=$result->url;?>" class="url" target="_blank"><?=$result->titleNoFormatting;?></a><br /><hr /><br />
    		</div><?php endforeach; endif; echo PHP_EOL; ?>
    	</body>
    </html>
  • 18-06-2013, 15:45:38
    #3
    saintx adlı üyeden alıntı: mesajı görüntüle
    Yapılan aramada 16 adet sonuç döndürür. Oluşturduğum yapı üzerinden çalışmanıza devam edebilirsiniz. İyi çalışmalar

    <?php
    	
    	/*
    	 * SAINTX > Google Resim Botu
    	 *
    	 * @author: SAINTX
    	 * @web: http://saintx.net
    	 * @email: im[at]saintx[net]
    	 * @date: 18.06.2013
    	 */
    	
    	class SAINTX {
    		const AUTHOR = 'SAINTX';
    		const GOOGLE_IMAGES_API_URL = 'https://ajax.googleapis.com/ajax/services/search/images';
    		
    		public $results = null;
    		public $api_request_query_string = null;
    		public $api_request_url = null;
    		public $api_request_returned_contents = null;
    		
    		public function getResults() {
    			$this->buildApiRequestQueryString();
    			$this->buildApiRequstURI();
    			$this->getContent();
    			
    			foreach(end($this->api_request_returned_contents) as $result)
    				array_push($this->api_request_returned_contents[0], $result);
    			
    			array_pop($this->api_request_returned_contents);
    			$this->api_request_returned_contents = end($this->api_request_returned_contents);
    			
    			$this->results = $this->api_request_returned_contents;
    		}
    		
    		public function buildApiRequestQueryString() {
    			$this->api_request_query_string = array(
    				"q1" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 0 : ($_POST['sayfa'] * 8)),
    					"rsz=8"
    				),
    				"q2" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 1 : (($_POST['sayfa'] + 1) * 8)),
    					"rsz=8"
    				),
    			);
    		}
    		
    		public function buildApiRequstURI() {
    			$this->api_request_url = array(
    				"r1" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q1"]),
    				"r2" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q2"])
    			);
    		}
    		
    		public function getContent() {
    			$this->api_request_returned_contents = array(
    				json_decode($this->html($this->api_request_url["r1"]))->responseData->results,
    				json_decode($this->html($this->api_request_url["r2"]))->responseData->results
    			);
    		}
    		
    		public function html($url, $iconv=false, $iconv_in_charset='', $iconv_out_charset='') {
    			return ($iconv) ? iconv($iconv_in_charset, $iconv_out_charset, @file_get_contents($url)) : @file_get_contents($url);
    		}
    	}
    	
    	$BOT = new SAINTX;
    	
    ?><!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8" />
    		<title>.google resim botu</title>
    		<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/2.1.2/normalize.css" />
    		<style type="text/css">
    			html, body { margin: 0; padding: 1em; font-family: "Georgia" }
    			div.bosluk { width: 100%; height: 1em; clear: both }
    			h1 { margin: 0; padding: 0; font-weight: normal; font-size: 125%; text-decoration: underline }
    			a.url { font-size: 125%; color: #666666; text-decoration: none }
    			a.url:hover { text-decoration: underline; color: #000 }
    		</style>
    	</head>
    	<body>
    		<form method="post">
    			<label for="kelime">.kelime;</label>
    			<input type="text" name="kelime" id="kelime" />
    			<label for="sayfa">.sayfa;</label>
    			<input type="text" name="sayfa" id="sayfa" value="1" />
    			<button type="submit">.getir</button>
    		</form><?php if($_POST): $BOT->getResults(); ?>
    		<div class="bosluk"></div>
    		<div id="sonuclar">
    			<h1>.sonuclar</h1>
    			<div class="bosluk"></div><?php foreach($BOT->results as $result): ?>
    			<img src="<?=$result->url;?>" width="160" height="160" />
    			<br />
    			<a href="<?=$result->url;?>" class="url" target="_blank"><?=$result->titleNoFormatting;?></a><br /><hr /><br />
    		</div><?php endforeach; endif; echo PHP_EOL; ?>
    	</body>
    </html>
    gerçekten süpere benziyor fakat, bir takım hata aldım.
    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 61

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 61

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 62

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 62

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 26
    .sonuclar

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 98
  • 18-06-2013, 16:09:23
    #4
    bLoo adlı üyeden alıntı: mesajı görüntüle
    gerçekten süpere benziyor fakat, bir takım hata aldım.
    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 61

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 61

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 62

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 62

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 26
    .sonuclar

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 98
    PHP sürümünüz kaç hocam?
  • 18-06-2013, 17:18:48
    #5
    5.4.x
    Son surum xampp kurulu hocam.
  • 18-06-2013, 20:00:59
    #6
    bLoo adlı üyeden alıntı: mesajı görüntüle
    5.4.x
    Son surum xampp kurulu hocam.
    Bu kodları deneyebilir misiniz?

    <?php
    	
    	/*
    	 * SAINTX > Google Resim Botu
    	 *
    	 * @author: SAINTX
    	 * @web: http://saintx.net
    	 * @email: im[at]saintx[net]
    	 * @date: 18.06.2013
    	 */
    	
    	class SAINTX {
    		const AUTHOR = 'SAINTX';
    		const GOOGLE_IMAGES_API_URL = 'https://ajax.googleapis.com/ajax/services/search/images';
    		
    		public $results = null;
    		public $api_request_query_string = null;
    		public $api_request_url = null;
    		public $api_request_returned_contents = null;
    		
    		public function getResults() {
    			$this->buildApiRequestQueryString();
    			$this->buildApiRequstURI();
    			$this->getContent();
    			
    			foreach(end($this->api_request_returned_contents) as $result)
    				array_push($this->api_request_returned_contents[0], $result);
    			
    			array_pop($this->api_request_returned_contents);
    			$this->api_request_returned_contents = end($this->api_request_returned_contents);
    			
    			$this->results = $this->api_request_returned_contents;
    		}
    		
    		public function buildApiRequestQueryString() {
    			$this->api_request_query_string = array(
    				"q1" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 0 : ($_POST['sayfa'] * 8)),
    					"rsz=8"
    				),
    				"q2" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 1 : (($_POST['sayfa'] + 1) * 8)),
    					"rsz=8"
    				),
    			);
    		}
    		
    		public function buildApiRequstURI() {
    			$this->api_request_url = array(
    				"r1" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q1"]),
    				"r2" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q2"])
    			);
    		}
    		
    		public function getContent() {
    			$r1 = json_decode($this->html($this->api_request_url["r1"]));
    			$r2 = json_decode($this->html($this->api_request_url["r2"]));
    			$this->api_request_returned_contents = array(
    				$r1->responseData->results,
    				$r2->responseData->results
    			);
    		}
    		
    		public function html($url, $iconv=false, $iconv_in_charset='', $iconv_out_charset='') {
    			return ($iconv) ? iconv($iconv_in_charset, $iconv_out_charset, @file_get_contents($url)) : @file_get_contents($url);
    		}
    	}
    	
    	$BOT = new SAINTX;
    	
    ?><!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8" />
    		<title>.google resim botu</title>
    		<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/2.1.2/normalize.css" />
    		<style type="text/css">
    			html, body { margin: 0; padding: 1em; font-family: "Georgia" }
    			div.bosluk { width: 100%; height: 1em; clear: both }
    			h1 { margin: 0; padding: 0; font-weight: normal; font-size: 125%; text-decoration: underline }
    			a.url { font-size: 125%; color: #666666; text-decoration: none }
    			a.url:hover { text-decoration: underline; color: #000 }
    		</style>
    	</head>
    	<body>
    		<form method="post">
    			<label for="kelime">.kelime;</label>
    			<input type="text" name="kelime" id="kelime" />
    			<label for="sayfa">.sayfa;</label>
    			<input type="text" name="sayfa" id="sayfa" value="1" />
    			<button type="submit">.getir</button>
    		</form><?php if($_POST): $BOT->getResults(); ?>
    		<div class="bosluk"></div>
    		<div id="sonuclar">
    			<h1>.sonuclar</h1>
    			<div class="bosluk"></div><?php foreach($BOT->results as $result): ?>
    			<img src="<?=$result->url;?>" width="160" height="160" />
    			<br />
    			<a href="<?=$result->url;?>" class="url" target="_blank"><?=$result->titleNoFormatting;?></a><br /><hr /><br />
    		</div><?php endforeach; endif; echo PHP_EOL; ?>
    	</body>
    </html>
  • 19-06-2013, 01:15:06
    #7
    explode edilen verileri array_merge ile birleştirip de yapabilirsiniz
  • 19-06-2013, 08:48:36
    #8
    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 63

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 63

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 64

    Notice: Trying to get property of non-object in D:\xampp\htdocs\botz\google2.php on line 64

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 26
    .sonuclar

    Warning: Invalid argument supplied for foreach() in D:\xampp\htdocs\botz\google2.php on line 100

    Apache/2.4.3 (Win32) OpenSSL/1.0.1c PHP/5.4.7 Server at localhost Port 80
    saintx adlı üyeden alıntı: mesajı görüntüle
    Bu kodları deneyebilir misiniz?

    <?php
    	
    	/*
    	 * SAINTX > Google Resim Botu
    	 *
    	 * @author: SAINTX
    	 * @web: http://saintx.net
    	 * @email: im[at]saintx[net]
    	 * @date: 18.06.2013
    	 */
    	
    	class SAINTX {
    		const AUTHOR = 'SAINTX';
    		const GOOGLE_IMAGES_API_URL = 'https://ajax.googleapis.com/ajax/services/search/images';
    		
    		public $results = null;
    		public $api_request_query_string = null;
    		public $api_request_url = null;
    		public $api_request_returned_contents = null;
    		
    		public function getResults() {
    			$this->buildApiRequestQueryString();
    			$this->buildApiRequstURI();
    			$this->getContent();
    			
    			foreach(end($this->api_request_returned_contents) as $result)
    				array_push($this->api_request_returned_contents[0], $result);
    			
    			array_pop($this->api_request_returned_contents);
    			$this->api_request_returned_contents = end($this->api_request_returned_contents);
    			
    			$this->results = $this->api_request_returned_contents;
    		}
    		
    		public function buildApiRequestQueryString() {
    			$this->api_request_query_string = array(
    				"q1" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 0 : ($_POST['sayfa'] * 8)),
    					"rsz=8"
    				),
    				"q2" => array(
    					"v=1.0",
    					"q=".(($_POST['kelime'] == '') ? urlencode('diren gezi parkı') : urlencode($_POST['kelime'])),
    					"start=".(($_POST['sayfa'] <= 0) ? 1 : (($_POST['sayfa'] + 1) * 8)),
    					"rsz=8"
    				),
    			);
    		}
    		
    		public function buildApiRequstURI() {
    			$this->api_request_url = array(
    				"r1" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q1"]),
    				"r2" => static::GOOGLE_IMAGES_API_URL.'?'.implode('&', $this->api_request_query_string["q2"])
    			);
    		}
    		
    		public function getContent() {
    			$r1 = json_decode($this->html($this->api_request_url["r1"]));
    			$r2 = json_decode($this->html($this->api_request_url["r2"]));
    			$this->api_request_returned_contents = array(
    				$r1->responseData->results,
    				$r2->responseData->results
    			);
    		}
    		
    		public function html($url, $iconv=false, $iconv_in_charset='', $iconv_out_charset='') {
    			return ($iconv) ? iconv($iconv_in_charset, $iconv_out_charset, @file_get_contents($url)) : @file_get_contents($url);
    		}
    	}
    	
    	$BOT = new SAINTX;
    	
    ?><!DOCTYPE html>
    <html>
    	<head>
    		<meta charset="utf-8" />
    		<title>.google resim botu</title>
    		<link rel="stylesheet" type="text/css" href="http://necolas.github.io/normalize.css/2.1.2/normalize.css" />
    		<style type="text/css">
    			html, body { margin: 0; padding: 1em; font-family: "Georgia" }
    			div.bosluk { width: 100%; height: 1em; clear: both }
    			h1 { margin: 0; padding: 0; font-weight: normal; font-size: 125%; text-decoration: underline }
    			a.url { font-size: 125%; color: #666666; text-decoration: none }
    			a.url:hover { text-decoration: underline; color: #000 }
    		</style>
    	</head>
    	<body>
    		<form method="post">
    			<label for="kelime">.kelime;</label>
    			<input type="text" name="kelime" id="kelime" />
    			<label for="sayfa">.sayfa;</label>
    			<input type="text" name="sayfa" id="sayfa" value="1" />
    			<button type="submit">.getir</button>
    		</form><?php if($_POST): $BOT->getResults(); ?>
    		<div class="bosluk"></div>
    		<div id="sonuclar">
    			<h1>.sonuclar</h1>
    			<div class="bosluk"></div><?php foreach($BOT->results as $result): ?>
    			<img src="<?=$result->url;?>" width="160" height="160" />
    			<br />
    			<a href="<?=$result->url;?>" class="url" target="_blank"><?=$result->titleNoFormatting;?></a><br /><hr /><br />
    		</div><?php endforeach; endif; echo PHP_EOL; ?>
    	</body>
    </html>
  • 19-06-2013, 11:12:45
    #9
    direk hostta attım baktım ama
    Parse error: syntax error, unexpected T_STATIC in /home/xx/domains/xx.com/public_html/xx/xx/dene/xx.php on line 54
    hata veriyo...