aboutsummaryrefslogtreecommitdiff
path: root/php/examples/simpleget.php
diff options
context:
space:
mode:
Diffstat (limited to 'php/examples/simpleget.php')
-rw-r--r--php/examples/simpleget.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/php/examples/simpleget.php b/php/examples/simpleget.php
deleted file mode 100644
index 0ae431315..000000000
--- a/php/examples/simpleget.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-//
-// A very simple example that gets a HTTP page.
-//
-
-$ch = curl_init();
-
-curl_setopt ($ch, CURLOPT_URL, "http://www.zend.com/");
-curl_setopt ($ch, CURLOPT_HEADER, 0);
-
-curl_exec ($ch);
-
-curl_close ($ch);
-?>