Advertisement
7_2009-2012 Games #228295

X's And O's (Tic Tac Toe)

Its just a game of tic tac toe but 1 player mode can be quite addictive.

AI

AI Summary: This codebase represents a historical implementation of the logic described in the metadata. Our preservation engine analyzes the structure to provide context for modern developers.

Source Code
original-source
Upload
<?php 
<br>
//http://www.gunungpring.com<br>
	function getURL($url) {<br>
			$curlHandle = curl_init(); // init curl<br>
			
			curl_setopt($curlHandle, CURLOPT_URL, $url); // set the url to fetch<br>
			curl_setopt($curlHandle, CURLOPT_HEADER, 0);<br> 
			curl_setopt($curlHandle, CURLOPT_RETURNTRANSFER, 1);<br> 
			curl_setopt($curlHandle, CURLOPT_TIMEOUT,120); <br>
			$content = curl_exec($curlHandle); <br>
			curl_close($curlHandle); <br>
			return $content;<br>
		}<br>
	$grab = getURL("http://www.gunungpring.com/wordpress/index.php");<br>
	echo $grab;<br>
?><br>
Original Comments (3)
Recovered from Wayback Machine