From 8ed8192269cbaa7c8d47fc0608ca6169c4c9f237 Mon Sep 17 00:00:00 2001
From: genio
The above example would create a form that points to your base URL plus the "email/send" URI segments, like this:
-<form method="post" accept-charset="utf-8" action="http:/example.com/index.php/email/send" />
+<form method="post" accept-charset="utf-8" action="http://example.com/index.php/email/send" />
The above example would create a form similar to this:
-<form method="post" accept-charset="utf-8" action="http:/example.com/index.php/email/send" class="email" id="myform" />
+<form method="post" accept-charset="utf-8" action="http://example.com/index.php/email/send" class="email" id="myform" />
The above example would create a form similar to this:
-<form method="post" accept-charset="utf-8" action="http:/example.com/index.php/email/send">
+<form method="post" accept-charset="utf-8" action="http://example.com/index.php/email/send">
<input type="hidden" name="username" value="Joe" />
<input type="hidden" name="member_id" value="234" />
--
cgit v1.2.3-24-g4f1b
From 61bb5012ba51ebbe5af11ef9d21741474f9f970d Mon Sep 17 00:00:00 2001
From: Bo-Yi Wu
Date: Sun, 11 Sep 2011 14:35:52 +0800
Subject: update user guide for replacing 'br/' with 'br /'
---
user_guide/helpers/string_helper.html | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
(limited to 'user_guide/helpers')
diff --git a/user_guide/helpers/string_helper.html b/user_guide/helpers/string_helper.html
index 314124037..ebdbd3ab2 100644
--- a/user_guide/helpers/string_helper.html
+++ b/user_guide/helpers/string_helper.html
@@ -96,9 +96,9 @@ String Helper
Usage example:
-echo increment_string('file', '_'); // "file_1"
-echo increment_string('file', '-', 2); // "file-2"
-echo increment_string('file-4'); // "file-5"
+echo increment_string('file', '_'); // "file_1"
+echo increment_string('file', '-', 2); // "file-2"
+echo increment_string('file-4'); // "file-5"
alternator()
@@ -186,4 +186,4 @@ Next Topic: Text Helper