Notes ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software | ABCDEFGHIJKLMNOPQRSTUVWXYZONPRTOFF codeid operationid title keywords application code languageid show_html show_iframe make_public viewed viewed_date language operation <- Look Inside DataConditions:Order: 7 Language Operation Title Keywords Application Code Languageid Show Html Show Iframe Make Public Viewed Viewed Date Html Files Using An Iframe iframe frame And these are the properties allowed in the starting iframe tag. You may notice that most of these are extremely similar to normal FRAME coding. src Specified the URL of the document to be displayed in the frame. src="FileName.html" name Specifies the name of the frame for the purpose of linking and targeting. name="MyIframe" width height Specifies the width/height of the iframe space in pixels or percentages. width="200" height="100" align Aligns the iframe to the left, center, or right side of the page. align="center" noresize Kills the visitors ability to resize the iframe borders manually. noresize="noresize" scrolling Indicates the ability of a scrollbar to appear (or not) with a value of yes, no, or auto. scrolling="auto" frameborder Carries a value of 0 or 1 depending if you want a border to appear around the iframe or not. frameborder="1" marginwidth marginheight Specifies the width/height of the margin in pixels. marginwidth="1" marginheight="1" vspace hspace Specifies the verticle/horizontal margin space in pixels. vspace="1" hspace="1" You don't have to use ALL of these properties. Most of the time, you will use the first four : SRC, NAME, WIDTH, and HEIGHT. The space between the opening and closing iframe tags is used just like the NOFRAMES tag in frames and the default text in the TEXTAREA tag. The text you enter within this area will be shown on the webpage IF the visitor's browser does not support the IFRAME tag. The next part is linking. Iframes behave the exact same way as regular frames when it comes to linking. The Iframe has a NAME property assigned to it, the link tags get a TARGET property in them. Html 3039 09/09/2023 Html Form Using Hyperlinks To Submit A Form hyperlink submit pass variable Developer Find A Local Store Enter your US zip code below to find all the Legacy Classic Kids retailers in your area. For Canadian Stores, Click Here Html 1831 09/09/2023 Html Formatting Restricting Line Breaks no line breaks NOBR - no break Description The NOBR tag ensures that a line of text does not wrap to the next line. This tag is useful for words or phrases that must be kept together on one line. However, note that if the line of text is long, it can extend beyond the margin of the browser window, so the user must use scrollbars to view the text. Syntax .... Attributes No Attributes. tells browser not creeate space but do not break the phrase Html 1571 09/09/2023 Html Formatting Remove Table Borders remove border, TABLES Use table style: text Html 1149 09/09/2023 Html Formatting Creating Page Breaks print break Printing CSS and Printing By Joe Burns Use these to jump around or read it all... [Page Break] [The Format] [Setting A Specific Page Break] I get a lot of questions asking if there are ways to "force" people's browsers to do certain things. The events most often asked for are to force a browser to bookmark the page, to set user preferences, and this one: How can I force a person's browser to print my page? The short and truthful answer is that you can't. There's no command or tag, to my knowledge, that produces a print when your page loads. There are just too many factors involved. Is the user's printer turned on? Can the Web page fit nicely in the print space set by the viewer? And most importantly: Does the viewer want to print your page? It would cheese me if I logged into your page and all of a sudden my printer was humming. Update! As of 10/99 there is still no way to force a printer to print a page; however, you can initiate a print request. See the tutorial. You can take some control when the user decides he or she does want to print your page. Through the magic of Style Sheets, you can now make a point of indicating where the pages will break during the print process. As of 12/21/98, this CSS2 command is supported only by Internet Explorer browsers version 4 and above. -------------------------------------------------------------------------------- Page Break There are two commands you're worried about here: page-break-after page-break-before You can pretty much pick out what each does. The first sets the printing page break just before the element, the second sets the page break just after. Each command has, in theory anyway, four attributes: always | auto | left | right always tells the browser to break the print page after this element always. auto is the default. You're telling the browser to do what it would do anyway: Page break where the page ends. left is not supported by any browser yet. It is used if your printer will print both sides of a page, like a manuscript. If the page is a left-facing page, use this attribute. right is what you use if it's a right-facing page. -------------------------------------------------------------------------------- The Format Here's what it looks like in your page's tags: That format will produce a print page break before each H2 on the page. Would you like to try it out? This page has four H2 headings. Go ahead and print the page. Each H2 will use a new page and will act as the Header for the printed page. Remember, though, that you have to be using Internet Explorer 4 or better. -------------------------------------------------------------------------------- Setting A Specific Page Break Maybe it's better not to have every H2 break the page. Maybe you'd like a page break at a specific point to keep a particular look. You do that by setting up a class of page breaks. You can set up the class on any HTML command, but I think the best method is to set up the class within a or command. That way there's some white space where the page can break. Here's a look at the format (this will sit between your tags): This then will be the activator for the page break: You can set up as many different classes as you'd like as long as you keep following the same format as above. -------------------------------------------------------------------------------- And That's That... This is another one of those commands that I would use if there's a need for it, regardless of the type of browser the viewer is running. Those that understand the command get the effect, and those that don't just get a straight page print. Either way, the user gets a nice print of the page. It's just that in one of the prints, you're able to set a few parameters. Html 2 09/09/2023 Html Formatting Ascii Table Improved ascii Ascii Lookup DEC OCT HEX BIN Symbol HTML Number HTML Name Description 00000000000000NUL?? Null character10010100000001SOH? Start of Heading20020200000010STX? Start of Text30030300000011ETX? End of Text40040400000100EOT? End of Transmission50050500000101ENQ? Enquiry60060600000110ACK? Acknowledge70070700000111BEL? Bell, Alert80100800001000BS? Backspace90110900001001HT ? Horizontal Tab100120A00001010LF? Line Feed110130B00001011VT? Vertical Tabulation120140C00001100FF? Form Feed130150D00001101CR? Carriage Return140160E00001110SO? Shift Out150170F00001111SI? Shift In160201000010000DLE? Data Link Escape170211100010001DC1? Device Control One (XON)180221200010010DC2? Device Control Two190231300010011DC3? Device Control Three (XOFF)200241400010100DC4? Device Control Four210251500010101NAK? Negative Acknowledge220261600010110SYN? Synchronous Idle230271700010111ETB? End of Transmission Block240301800011000CAN? Cancel250311900011001EM? End of medium260321A00011010SUB? Substitute270331B00011011ESC? Escape280341C00011100FS? File Separator290351D00011101GS? Group Separator300361E00011110RS? Record Separator310371F00011111US? Unit Separator DEC OCT HEX BIN Symbol HTML Number HTML Name Description 320402000100000SP ? Space330412100100001!!!Exclamation mark340422200100010"""Double quotes (or speech marks)350432300100011###Number sign360442400100100$$$Dollar370452500100101%%%Per cent sign380462600100110&&&Ampersand390472700100111'''Single quote400502800101000((&lparen;Open parenthesis (or open bracket)410512900101001))&rparen;Close parenthesis (or close bracket)420522A00101010***Asterisk430532B00101011+++Plus440542C00101100,,,Comma450552D00101101--? Hyphen-minus460562E00101110...Period, dot or full stop470572F00101111///Slash or divide48060300011000000? Zero49061310011000111? One50062320011001022? Two51063330011001133? Three52064340011010044? Four53065350011010155? Five54066360011011066? Six55067370011011177? Seven56070380011100088? Eight57071390011100199? Nine580723A00111010:::Colon590733B00111011;;;Semicolon600743C00111100<<<Less than (or open angled bracket)610753D00111101===Equals620763E00111110>>>Greater than (or close angled bracket)630773F00111111???Question mark641004001000000@@@At sign651014101000001AA? Uppercase A661024201000010BB? Uppercase B671034301000011CC? Uppercase C681044401000100DD? Uppercase D691054501000101EE? Uppercase E701064601000110FF? Uppercase F711074701000111GG? Uppercase G721104801001000HH? Uppercase H731114901001001II? Uppercase I741124A01001010JJ? Uppercase J751134B01001011KK? Uppercase K761144C01001100LL? Uppercase L771154D01001101MM? Uppercase M781164E01001110NN? Uppercase N791174F01001111OO? Uppercase O801205001010000PP? Uppercase P811215101010001QQ? Uppercase Q821225201010010RR? Uppercase R831235301010011SS? Uppercase S841245401010100TT? Uppercase T851255501010101UU? Uppercase U861265601010110VV? Uppercase V871275701010111WW? Uppercase W881305801011000XX? Uppercase X891315901011001YY? Uppercase Y901325A01011010ZZ? Uppercase Z911335B01011011[[[Opening bracket921345C01011100Backslash931355D01011101]]]Closing bracket941365E01011110^^^Caret - circumflex951375F01011111___Underscore961406001100000```Grave accent971416101100001aa? Lowercase a981426201100010bb? Lowercase b991436301100011cc? Lowercase c1001446401100100dd? Lowercase d1011456501100101ee? Lowercase e1021466601100110ff? Lowercase f1031476701100111gg? Lowercase g1041506801101000hh? Lowercase h1051516901101001ii? Lowercase i1061526A01101010jj? Lowercase j1071536B01101011kk? Lowercase k1081546C01101100ll? Lowercase l1091556D01101101mm? Lowercase m1101566E01101110nn? Lowercase n1111576F01101111oo? Lowercase o1121607001110000pp? Lowercase p1131617101110001qq? Lowercase q1141627201110010rr? Lowercase r1151637301110011ss? Lowercase s1161647401110100tt? Lowercase t1171657501110101uu? Lowercase u1181667601110110vv? Lowercase v1191677701110111ww? Lowercase w1201707801111000xx? Lowercase x1211717901111001yy? Lowercase y1221727A01111010zz? Lowercase z1231737B01111011{{{Opening brace1241747C01111100|||Vertical bar1251757D01111101}}}Closing brace1261767E01111110~~˜Equivalency sign - tilde1271777F01111111DEL? Delete DEC OCT HEX BIN Symbol HTML Number HTML Name Description 1282008010000000€€€Euro sign1292018110000001 Unused1302028210000010‚‚‚Single low-9 quotation mark1312038310000011ƒƒƒLatin small letter f with hook1322048410000100„„„Double low-9 quotation mark1332058510000101………Horizontal ellipsis1342068610000110 Dagger1352078710000111‡‡‡Double dagger1362108810001000ˆˆˆModifier letter circumflex accent1372118910001001‰‰‰Per mille sign1382128A10001010 Latin capital letter S with caron1392138B10001011‹‹‹Single left-pointing angle quotation1402148C10001100ŒŒŒLatin capital ligature OE1412158D10001101 Unused1422168E10001110ŽŽŽLatin capital letter Z with caron1432178F10001111 Unused1442209010010000 Unused1452219110010001‘‘‘Left single quotation mark1462229210010010’’’Right single quotation mark1472239310010011“““Left double quotation mark1482249410010100”””Right double quotation mark1492259510010101•••Bullet1502269610010110–––En dash1512279710010111———Em dash1522309810011000˜˜˜Small tilde1532319910011001™™™Trade mark sign1542329A10011010šššLatin small letter S with caron1552339B10011011›››Single right-pointing angle quotation mark1562349C10011100œœœLatin small ligature oe1572359D10011101 Unused1582369E10011110žžžLatin small letter z with caron1592379F10011111ŸŸŸLatin capital letter Y with diaeresis160240A010100000NBSP Non-breaking space161241A110100001¡¡¡Inverted exclamation mark162242A210100010¢¢¢Cent sign163243A310100011£££Pound sign164244A410100100¤¤¤Currency sign165245A510100101¥¥¥Yen sign166246A610100110¦¦¦Pipe, broken vertical bar167247A710100111§§§Section sign168250A810101000¨¨¨Spacing diaeresis - umlaut169251A910101001©©©Copyright sign170252AA10101010ªªªFeminine ordinal indicator171253AB10101011«««Left double angle quotes172254AC10101100¬¬¬Negation173255AD10101101SHYSoft hyphen174256AE10101110®®®Registered trade mark sign175257AF10101111¯¯¯Spacing macron - overline176260B010110000°°°Degree sign177261B110110001±±±Plus-or-minus sign178262B210110010²²²Superscript two - squared179263B310110011³³³Superscript three - cubed180264B410110100´´´Acute accent - spacing acute181265B510110101µµµMicro sign182266B610110110¶¶¶Pilcrow sign - paragraph sign183267B710110111···Middle dot - Georgian comma184270B810111000¸¸¸Spacing cedilla185271B910111001¹¹¹Superscript one186272BA10111010ºººMasculine ordinal indicator187273BB10111011»»»Right double angle quotes188274BC10111100¼¼¼Fraction one quarter189275BD10111101½½½Fraction one half190276BE10111110¾¾¾Fraction three quarters191277BF10111111¿¿¿Inverted question mark192300C011000000ÀÀÀLatin capital letter A with grave193301C111000001ÁÁÁLatin capital letter A with acute194302C211000010ÂÂÂLatin capital letter A with circumflex195303C311000011ÃÃÃLatin capital letter A with tilde196304C411000100ÄÄÄLatin capital letter A with diaeresis197305C511000101ÅÅÅLatin capital letter A with ring above198306C611000110ÆÆÆLatin capital letter AE199307C711000111ÇÇÇLatin capital letter C with cedilla200310C811001000ÈÈÈLatin capital letter E with grave201311C911001001ÉÉÉLatin capital letter E with acute202312CA11001010 ÊÊÊLatin capital letter E with circumflex203313CB11001011ËËËLatin capital letter E with diaeresis204314CC11001100ÌÌÌLatin capital letter I with grave205315CD11001101ÍÍÍLatin capital letter I with acute206316CE11001110ÎÎÎLatin capital letter I with circumflex207317CF11001111ÏÏÏLatin capital letter I with diaeresis208320D011010000ÐÐÐLatin capital letter ETH209321D111010001ÑÑÑLatin capital letter N with tilde210322D211010010ÒÒÒLatin capital letter O with grave211323D311010011ÓÓÓLatin capital letter O with acute212324D411010100ÔÔÔLatin capital letter O with circumflex213325D511010101ÕÕÕLatin capital letter O with tilde214326D611010110ÖÖÖLatin capital letter O with diaeresis215327D711010111×××Multiplication sign216330D811011000ØØØLatin capital letter O with slash217331D911011001ÙÙÙLatin capital letter U with grave218332DA11011010ÚÚÚLatin capital letter U with acute219333DB11011011ÛÛÛLatin capital letter U with circumflex220334DC11011100ÜÜÜLatin capital letter U with diaeresis221335DD11011101ÝÝÝLatin capital letter Y with acute222336DE11011110ÞÞÞLatin capital letter THORN223337DF11011111ßßßLatin small letter sharp s - ess-zed224340E011100000 Latin small letter a with grave225341E111100001áááLatin small letter a with acute226342E211100010âââLatin small letter a with circumflex227343E311100011ãããLatin small letter a with tilde228344E411100100äääLatin small letter a with diaeresis229345E511100101åååLatin small letter a with ring above230346E611100110æææLatin small letter ae231347E711100111çççLatin small letter c with cedilla232350E811101000èèèLatin small letter e with grave233351E911101001éééLatin small letter e with acute234352EA11101010êêêLatin small letter e with circumflex235353EB11101011ëëëLatin small letter e with diaeresis236354EC11101100ìììLatin small letter i with grave237355ED11101101íííLatin small letter i with acute238356EE11101110îîîLatin small letter i with circumflex239357EF11101111ïïïLatin small letter i with diaeresis240360F011110000ðððLatin small letter eth241361F111110001ñññLatin small letter n with tilde242362F211110010òòòLatin small letter o with grave243363F311110011óóóLatin small letter o with acute244364F411110100ôôôLatin small letter o with circumflex245365F511110101õõõLatin small letter o with tilde246366F611110110öööLatin small letter o with diaeresis247367F711110111÷÷÷Division sign248370F811111000øøøLatin small letter o with slash249371F911111001ùùùLatin small letter u with grave250372FA11111010úúúLatin small letter u with acute251373FB11111011ûûûLatin small letter u with circumflex252374FC11111100üüüLatin small letter u with diaeresis253375FD11111101ýýýLatin small letter y with acute254376FE11111110þþþLatin small letter thorn255377FF11111111ÿÿÿLatin small letter y with diaeresis Html 1 09/24/2025 Html Keyboard Key Codes keyboard ascii chr key codes $newstring=substr($teaser,25,1);$acii=ord($newstring); echo "$newstring=======$ascii"; The 160 is a space problem for browsers Code Entity Hex Character Description ------ -------------- --- --------- ----------------------------------- %00 Unused %01 Unused %02 Unused %03 Unused %04 Unused %05 Unused %06 Unused %07 Unused %08 Unused %09 Horizontal tab %0A Line feed %0B Unused %0C Unused %0D Carriage return %0E Unused %0F Unused %10 Unused %11 Unused %12 Unused %13 Unused %14 Unused %15 Unused %16 Unused %17 Unused %18 Unused %19 Unused %1A Unused %1B Unused %1C Unused %1D Unused %1E Unused %1F Unused %20 Space ! %21 ! Exclamation mark " " %22 " Quotation mark # %23 # Number sign $ %24 $ Dollar sign % %25 % Percent sign & & %26 & Ampersand ' %27 ' Apostrophe ( %28 ( Left parenthesis ) %29 ) Right parenthesis * %2A * Asterisk + %2B + Plus sign , %2C , Comma - %2D - Hyphen . %2E . Period (fullstop) / %2F / Solidus (slash) 0 %30 0 0 1 %31 1 1 2 %32 2 2 3 %33 3 3 4 %34 4 4 5 %35 5 5 6 %36 6 6 7 %37 7 7 8 %38 8 8 9 %39 9 9 : %3A : Colon ; %3B ; Semi-colon < < %3C < Less than = %3D = Equals sign > > %3E > Greater than ? %3F ? Question mark @ %40 @ Commercial at A %41 A A B %42 B B C %43 C C D %44 D D E %45 E E F %46 F F G %47 G G H %48 H H I %49 I I J %4A J J K %4B K K L %4C L L M %4D M M N %4E N N O %4F O O P %50 P P Q %51 Q Q R %52 R R S %53 S S T %54 T T U %55 U U V %56 V V W %57 W W X %58 X X Y %59 Y Y Z %5A Z Z [ %5B [ Left square bracket \ %5C \ Reverse solidus (backslash) ] %5D ] Right square bracket ^ %5E ^ Caret _ %5F _ Horizontal bar (underscore) ` %60 ` Acute accent a %61 a a b %62 b b c %63 c c d %64 d d e %65 e e f %66 f f g %67 g g h %68 h h i %69 i i j %6A j j k %6B k k l %6C l l m %6D m m n %6E n n o %6F o o p %70 p p q %71 q q r %72 r r s %73 s s t %74 t t u %75 u u v %76 v v w %77 w w x %78 x x y %79 y y z %7A z z { %7B { Left curly brace | %7C | Vertical bar } %7D } Right curly brace ~ %7E ~ Tilde %7F Unused € %80 Unused %81 Unused ‚ %82 Unused ƒ %83 Unused „ %84 Unused … %85 Unused %86 Unused ‡ %87 Unused ˆ %88 Unused ‰ %89 Unused %8A Unused ‹ %8B Unused Œ %8C Unused %8D Unused Ž %8E Unused %8F Unused %90 Unused ‘ %91 Unused ’ %92 Unused “ %93 Unused ” %94 Unused • %95 Unused – %96 Unused — %97 Unused ˜ %98 Unused ™ %99 TM TM TM TM TM š %9A Unused › %9B Unused œ %9C Unused %9D Unused ž %9E Unused Ÿ %9F Unused [3.2] %A0 Non-breaking space ¡ ¡ [3.2] %A1 ¡ Inverted exclamation ¢ ¢ [3.2] %A2 ¢ Cent sign £ £ [3.2] %A3 £ Pound sterling ¤ ¤ [3.2] %A4 ¤ General currency sign ¥ ¥ [3.2] %A5 ¥ Yen sign ¦ ¦ [3.2] %A6 ¦ Broken vertical bar § § [3.2] %A7 § Section sign ¨ ¨ [3.2] %A8 ¨ Umlaut (dieresis) © © [3.2] %A9 © Copyright ª ª [3.2] %AA ª Feminine ordinal « « [3.2] %AB « Left angle quote, guillemotleft ¬ ¬ [3.2] %AC ¬ Not sign [3.2] %AD Soft hyphen ® ® [3.2] %AE ® Registered trademark ¯ ¯ [3.2] %AF ¯ Macron accent ° ° [3.2] %B0 ° Degree sign ± ± [3.2] %B1 ± Plus or minus ² ² [3.2] %B2 ² Superscript two ³ ³ [3.2] %B3 ³ Superscript three ´ ´ [3.2] %B4 ´ Acute accent µ µ [3.2] %B5 µ Micro sign ¶ ¶ [3.2] %B6 ¶ Paragraph sign · · [3.2] %B7 · Middle dot ¸ ¸ [3.2] %B8 ¸ Cedilla ¹ ¹ [3.2] %B9 ¹ Superscript one º º [3.2] %BA º Masculine ordinal » » [3.2] %BB » Right angle quote, guillemotright ¼ ¼ [3.2] %BC ¼ Fraction one-fourth ½ ½ [3.2] %BD ½ Fraction one-half ¾ ¾ [3.2] %BE ¾ Fraction three-fourths ¿ ¿ [3.2] %BF ¿ Inverted question mark À À %C0 À Capital A, grave accent Á Á %C1 Á Capital A, acute accent   %C2  Capital A, circumflex accent à à %C3 à Capital A, tilde Ä Ä %C4 Ä Capital A, dieresis or umlaut mark Å Å %C5 Å Capital A, ring Æ Æ %C6 Æ Capital AE dipthong (ligature) Ç Ç %C7 Ç Capital C, cedilla È È %C8 È Capital E, grave accent É É %C9 É Capital E, acute accent Ê Ê %CA Ê Capital E, circumflex accent Ë Ë %CB Ë Capital E, dieresis or umlaut mark Ì Ì %CC Ì Capital I, grave accent Í Í %CD Í Capital I, acute accent Î Î %CE Î Capital I, circumflex accent Ï Ï %CF Ï Capital I, dieresis or umlaut mark Ð Ð %D0 Ð Capital Eth, Icelandic Ñ Ñ %D1 Ñ Capital N, tilde Ò Ò %D2 Ò Capital O, grave accent Ó Ó %D3 Ó Capital O, acute accent Ô Ô %D4 Ô Capital O, circumflex accent Õ Õ %D5 Õ Capital O, tilde Ö Ö %D6 Ö Capital O, dieresis or umlaut mark × × [3.2] %D7 × Multiply sign Ø Ø %D8 Ø Capital O, slash Ù Ù %D9 Ù Capital U, grave accent Ú Ú %DA Ú Capital U, acute accent Û Û %DB Û Capital U, circumflex accent Ü Ü %DC Ü Capital U, dieresis or umlaut mark Ý Ý %DD Ý Capital Y, acute accent Þ Þ %DE Þ Capital THORN, Icelandic ß ß %DF ß Small sharp s, German (sz ligature) %E0 Small a, grave accent á á %E1 á Small a, acute accent â â %E2 â Small a, circumflex accent ã ã %E3 ã Small a, tilde ä ä %E4 ä Small a, dieresis or umlaut mark å å %E5 å Small a, ring æ æ %E6 æ Small ae dipthong (ligature) ç ç %E7 ç Small c, cedilla è è %E8 è Small e, grave accent é é %E9 é Small e, acute accent ê ê %EA ê Small e, circumflex accent ë ë %EB ë Small e, dieresis or umlaut mark ì ì %EC ì Small i, grave accent í í %ED í Small i, acute accent î î %EE î Small i, circumflex accent ï ï %EF ï Small i, dieresis or umlaut mark ð ð %F0 ð Small eth, Icelandic ñ ñ %F1 ñ Small n, tilde ò ò %F2 ò Small o, grave accent ó ó %F3 ó Small o, acute accent ô ô %F4 ô Small o, circumflex accent õ õ %F5 õ Small o, tilde ö ö %F6 ö Small o, dieresis or umlaut mark ÷ ÷ [3.2] %F7 ÷ Division sign ø ø %F8 ø Small o, slash ù ù %F9 ù Small u, grave accent ú ú %FA ú Small u, acute accent û û %FB û Small u, circumflex accent ü ü %FC ü Small u, dieresis or umlaut mark ý ý %FD ý Small y, acute accent þ þ %FE þ Small thorn, Icelandic ÿ ÿ %FF ÿ Small y, dieresis or umlaut mark Html 2158 02/22/2024