philip Wed Jun 11 18:03:10 2003 EDT
Modified files:
/phpdoc/en/chapters security.xml
/phpdoc/en/features file-upload.xml
/phpdoc/en/language variables.xml
/phpdoc/en/reference/oci8/functions ocinewdescriptor.xml
/phpdoc/en/reference/yaz reference.xml
Log:
Use of proper case
Index: phpdoc/en/chapters/security.xml
diff -u phpdoc/en/chapters/security.xml:1.56 phpdoc/en/chapters/security.xml:1.57
--- phpdoc/en/chapters/security.xml:1.56 Wed May 21 06:34:22 2003
+++ phpdoc/en/chapters/security.xml Wed Jun 11 18:03:09 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.56 $ -->
+<!-- $Revision: 1.57 $ -->
<chapter id="security">
<title>Security</title>
@@ -920,7 +920,7 @@
<title>Attacking Variables with a custom HTML page</title>
<programlisting role="php">
<![CDATA[
-<form method="post" action="attacktarget?username=badfoo&password=badfoo">
+<form method="POST" action="attacktarget?username=badfoo&password=badfoo">
<input type="hidden" name="username" value="badfoo">
<input type="hidden" name="password" value="badfoo">
</form>
@@ -947,7 +947,7 @@
<title>Exploiting common debugging variables</title>
<programlisting role="php">
<![CDATA[
-<form method="post" action="attacktarget?errors=Y&showerrors=1"&debug=1">
+<form method="POST" action="attacktarget?errors=Y&showerrors=1"&debug=1">
<input type="hidden" name="errors" value="Y">
<input type="hidden" name="showerrors" value="1">
<input type="hidden" name="debug" value="1">
Index: phpdoc/en/features/file-upload.xml
diff -u phpdoc/en/features/file-upload.xml:1.61 phpdoc/en/features/file-upload.xml:1.62
--- phpdoc/en/features/file-upload.xml:1.61 Wed Jun 11 17:13:57 2003
+++ phpdoc/en/features/file-upload.xml Wed Jun 11 18:03:09 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.61 $ -->
+<!-- $Revision: 1.62 $ -->
<chapter id="features.file-upload">
<title>Handling file uploads</title>
@@ -40,7 +40,7 @@
<title>File Upload Form</title>
<programlisting role="html">
<![CDATA[
-<form enctype="multipart/form-data" action="_URL_" method="post">
+<form enctype="multipart/form-data" action="_URL_" method="POST">
<input type="hidden" name="MAX_FILE_SIZE" value="30000">
Send this file: <input name="userfile" type="file">
<input type="submit" value="Send File">
@@ -355,7 +355,7 @@
<title>Uploading multiple files</title>
<programlisting role="html">
<![CDATA[
-<form action="file-upload.php" method="post" enctype="multipart/form-data">
+<form action="file-upload.php" method="POST" enctype="multipart/form-data">
Send these files:<br>
<input name="userfile[]" type="file"><br>
<input name="userfile[]" type="file"><br>
Index: phpdoc/en/language/variables.xml
diff -u phpdoc/en/language/variables.xml:1.61 phpdoc/en/language/variables.xml:1.62
--- phpdoc/en/language/variables.xml:1.61 Sat Jun 7 13:40:41 2003
+++ phpdoc/en/language/variables.xml Wed Jun 11 18:03:09 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.61 $ -->
+<!-- $Revision: 1.62 $ -->
<chapter id="language.variables">
<title>Variables</title>
@@ -753,7 +753,7 @@
<title>A simple HTML form</title>
<programlisting role="html">
<![CDATA[
-<form action="foo.php" method="post">
+<form action="foo.php" method="POST">
Name: <input type="text" name="username"><br>
Email: <input type="text" name="email"><br>
<input type="submit" name="submit" value="Submit me!">
@@ -859,7 +859,7 @@
print '</pre>';
} else {
?>
-<form action="<?php echo $HTTP_SERVER_VARS['PHP_SELF']; ?>" method="post">
+<form action="<?php echo $HTTP_SERVER_VARS['PHP_SELF']; ?>" method="POST">
Name: <input type="text" name="personal[name]"><br>
Email: <input type="text" name="personal[email]"><br>
Beer: <br>
Index: phpdoc/en/reference/oci8/functions/ocinewdescriptor.xml
diff -u phpdoc/en/reference/oci8/functions/ocinewdescriptor.xml:1.3
phpdoc/en/reference/oci8/functions/ocinewdescriptor.xml:1.4
--- phpdoc/en/reference/oci8/functions/ocinewdescriptor.xml:1.3 Mon Feb 10 22:06:15
2003
+++ phpdoc/en/reference/oci8/functions/ocinewdescriptor.xml Wed Jun 11 18:03:09
2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/oci8.xml, last change in rev 1.2 -->
<refentry id="function.ocinewdescriptor">
<refnamediv>
@@ -62,13 +62,13 @@
<?php
/* This script demonstrates file upload to LOB columns
* The formfield used for this example looks like this
- * <form action="upload.php" method="post" enctype="multipart/form-data">
+ * <form action="upload.php" method="POST" enctype="multipart/form-data">
* <input type="file" name="lob_upload">
* ...
*/
if(!isset($lob_upload) || $lob_upload == 'none'){
?>
-<form action="upload.php" method="post" enctype="multipart/form-data">
+<form action="upload.php" method="POST" enctype="multipart/form-data">
Upload file: <input type="file" name="lob_upload"><br>
<input type="submit" value="Upload"> - <input type="reset">
</form>
Index: phpdoc/en/reference/yaz/reference.xml
diff -u phpdoc/en/reference/yaz/reference.xml:1.9
phpdoc/en/reference/yaz/reference.xml:1.10
--- phpdoc/en/reference/yaz/reference.xml:1.9 Fri Feb 28 19:13:02 2003
+++ phpdoc/en/reference/yaz/reference.xml Wed Jun 11 18:03:09 2003
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.9 $ -->
+<!-- $Revision: 1.10 $ -->
<reference id="ref.yaz">
<title>YAZ functions</title>
<titleabbrev>YAZ</titleabbrev>
@@ -65,7 +65,7 @@
<![CDATA[
$num_hosts = count ($host);
if (empty($term) || count($host) == 0) {
- echo '<form method="get">
+ echo '<form method="GET">
<input type="checkbox"
name="host[]" value="bagel.indexdata.dk/gils">
GILS test
--
PHP Documentation Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php