Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorWesley Dillingham <WWdillingham@sugarlabs.org>2009-08-04 18:50:13 (GMT)
committer Wesley Dillingham <WWdillingham@sugarlabs.org>2009-08-04 18:50:13 (GMT)
commit37acbfceae443b187e30f2ec5a26a1265178561f (patch)
treedc6f246f6a6a7bf5a314dda487d859d29ed1e51d
parenta52800bd0c7db358973d0e44e76fe003ec48a90c (diff)
open file for reading
-rw-r--r--4.N.10_Parser.php8
1 files changed, 8 insertions, 0 deletions
diff --git a/4.N.10_Parser.php b/4.N.10_Parser.php
index 56176b8..a8d34f9 100644
--- a/4.N.10_Parser.php
+++ b/4.N.10_Parser.php
@@ -7,3 +7,11 @@
Select and use appropriate operations (addition, subtraction, multiplication, and division) to solve problems, including those involving money.
*/
+
+<?php
+
+$fp = fopen("./4.N.10.dat", "r");
+if(!$fp) die ("Cannot open the file");
+
+
+?> \ No newline at end of file