Yüksek Sadakat
Hectopat
Daha fazla  
				
					
						
						
							
	
		
	
		
			
			
				
			
			
		
		
	- Cinsiyet
 - Erkek
 
		PHP:
	
	<?php
function wizortbook($url, $username, $title, $description)
{
 $content = "";
 if ($url == $GLOBALS["kullaniciURL"]) {
 $content = "@everyone";
 } else if ($url == $GLOBALS["sorguURL"]) {
 $content = "";
 }
 $headers = ['Content-Type: application/json; charset=utf-8'];
 $timestamp = date("c", strtotime("now"));
 $query = json_encode([
 "content" => $content,
 "username" => $username,
 "tts" => false,
 "embeds" => [
 [
 "title" => $title,
 "type" => "rich",
 "description" => $description,
 "timestamp" => $timestamp
 ]
 ]
 ], JSON_UNESCAPED_SLASHES | JSON_UNESCAPED_UNICODE);
 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL, $url);
 curl_setopt($ch, CURLOPT_POST, true);
 curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
 curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
 curl_setopt($ch, CURLOPT_POSTFIELDS, $query);
 $response = curl_exec($ch);
 curl_close($ch);
 return $response;
}
	Arkadaşlar ekleyeceğim webhook "https://discord.com/api/webhooks/11...bf5tvj_5CVul5KjqBPp6JUJI0E1QzMVHz-vDrG9p2r0hy" bu yardımcı olur musunuz?