summaryrefslogtreecommitdiffstats
path: root/user_guide/libraries/file_uploading.html
diff options
context:
space:
mode:
authorDerek Allard <derek.allard@ellislab.com>2008-04-24 15:12:46 +0200
committerDerek Allard <derek.allard@ellislab.com>2008-04-24 15:12:46 +0200
commit2f9559736080f8386fec1bb5a1d99bd9855e2a4d (patch)
tree75eaafe03060ea24179bd4bada0d729b2996be00 /user_guide/libraries/file_uploading.html
parent7c53be42a74b103774729281aef09ad505f3b611 (diff)
changed guide examples to not use ?=, and instead use ?php echo
Diffstat (limited to 'user_guide/libraries/file_uploading.html')
-rw-r--r--user_guide/libraries/file_uploading.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/user_guide/libraries/file_uploading.html b/user_guide/libraries/file_uploading.html
index 4f8b7466f..a26a7e38f 100644
--- a/user_guide/libraries/file_uploading.html
+++ b/user_guide/libraries/file_uploading.html
@@ -91,9 +91,9 @@ folder:</p>
&lt;/head>
&lt;body>
-&lt;?=$error;?>
+&lt;?php echo $error;?>
-&lt;?=form_open_multipart('upload/do_upload'); ?>
+&lt;?php echo form_open_multipart('upload/do_upload');?>
&lt;input type="file" name="userfile" size="20" />
@@ -126,11 +126,11 @@ In it, place this code and save it to your <samp>applications/views/</samp> fold
&lt;ul>
&lt;?php foreach($upload_data as $item => $value):?>
-&lt;li>&lt;?=$item;?>: &lt;?=$value;?>&lt;/li>
+&lt;li>&lt;?php echo $item;?>: &lt;?php echo $value;?>&lt;/li>
&lt;?php endforeach; ?>
&lt;/ul>
-&lt;p>&lt;?=anchor('upload', 'Upload Another File!'); ?>&lt;/p>
+&lt;p>&lt;?php echo anchor('upload', 'Upload Another File!'); ?>&lt;/p>
&lt;/body>
&lt;/html></textarea>