cvs: phpdoc-nl /features file-upload.xml
[email protected] ("Sacha Telgenhof Oude Koehorst")
| Newsgroups | php.doc.nl |
|---|---|
| Message-ID | <cvssachat1029607941@cvsserver> |
sachat Sat Aug 17 14:12:21 2002 EDT
Modified files:
/phpdoc-nl/features file-upload.xml
Log:
Fixed an error with some entities - missing ';'
Index: phpdoc-nl/features/file-upload.xml
diff -u phpdoc-nl/features/file-upload.xml:1.8 phpdoc-nl/features/file-upload.xml:1.9
--- phpdoc-nl/features/file-upload.xml:1.8 Wed Dec 12 15:55:49 2001
+++ phpdoc-nl/features/file-upload.xml Sat Aug 17 14:12:21 2002
@@ -1,4 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
+<!-- EN-Revision: 1.40 Maintainer: n/a Status: ready -->
<chapter id="features.file-upload">
<title>Bestanden uploaden naar server</title>
@@ -154,7 +155,7 @@
<function>move_uploaded_file</function>.
</para>
<programlisting role="php">
-<?php
+<?php
if (is_uploaded_file($userfile)) {
copy($userfile, "/plaats/voor/ge-uploadbestand");
} else {
@@ -176,7 +177,7 @@
</note>
</para>
<programlisting role="php">
-<?php
+<?php
/* Gebruikerstest voor ge-upload bestand. */
function is_uploaded_file($filename) {
if (!$tmp_file = get_cfg_var('upload_tmp_dir')) {