diff options
author | Derek Allard <derek.allard@ellislab.com> | 2008-04-24 15:12:46 +0200 |
---|---|---|
committer | Derek Allard <derek.allard@ellislab.com> | 2008-04-24 15:12:46 +0200 |
commit | 2f9559736080f8386fec1bb5a1d99bd9855e2a4d (patch) | |
tree | 75eaafe03060ea24179bd4bada0d729b2996be00 /user_guide/libraries/file_uploading.html | |
parent | 7c53be42a74b103774729281aef09ad505f3b611 (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.html | 8 |
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> </head>
<body>
-<?=$error;?>
+<?php echo $error;?>
-<?=form_open_multipart('upload/do_upload'); ?>
+<?php echo form_open_multipart('upload/do_upload');?>
<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 <ul>
<?php foreach($upload_data as $item => $value):?>
-<li><?=$item;?>: <?=$value;?></li>
+<li><?php echo $item;?>: <?php echo $value;?></li>
<?php endforeach; ?>
</ul>
-<p><?=anchor('upload', 'Upload Another File!'); ?></p>
+<p><?php echo anchor('upload', 'Upload Another File!'); ?></p>
</body>
</html></textarea>
|