Search the Community
Showing results for tags 'ascii'.
-
why url can only be sent over the internet using the ascii character-set but not use unicode???
- 1 reply
-
- charset
- character set
-
(and 2 more)
Tagged with:
-
I got this code to edit/save a specific text file online. <?phpif($_POST['Submit']){$open = fopen("b1.txt","w+");$text = $_POST['update'];fwrite($open, $text);fclose($open);echo "File updated.<br />";echo "File:<br />";$file = file("b1.txt");foreach($file as $text) {echo $text."<br />";}}else{$file = file("b1.txt");echo "<form action=\"".$PHP_SELF."\" method=\"post\">";echo "<textarea Name=\"update\" cols=\"50\" rows=\"10\">";foreach($file as $text) {echo $text;}echo "</textarea>";echo "<input name=\"Submit\" type=\"submit\" value=\"Update\" />\n&
- 2 replies
-
- ascii
- special characters
-
(and 1 more)
Tagged with: