rna

  1. R

    🔒 Closed Example program in assembly language

    .model small .stack 100h .data row db 12 col db 40 .code gintama: mov ax, @data mov ds, ax mov ax, 0003h int 10h call gotoxy mov al, '*' mov bl, 05h mov cx, 1 int 10h mov ah,1 int 21h cmp al, 077H je Up cmp al,073H je...
  2. R

    🔒 Closed Php if...elseif...else condition

    <?php $a =10;$b=5; if($a>=$b){ echo "The value of a is greater than b"; }elseif(($a-$b)==$b){ echo "The value of a-b is equal b"; }else{ echo "The conditions are false"; } ?> This is the basic If...elseif...else Condition in PHP for beginners.
  3. R

    🔒 Closed Basic structures of html

    <!DOCTYPE html> <html> <head> <title></title> </head> <body> </body> </html> This is the very basic Structure of HTML for the beginners.
  4. R

    🔒 Closed Cookie vs session

    <?php setcookie("cookie_name","cookie_value",time()+60,"/"); echo $_COOKIE['cookie_name']; $_SESSION['session_name']="session_value"; echo $_SESSION['session_name']; ?> When you are using COOKIE, you can set the expiry of it. So that if the COOKIE did not meet the expiry you can...
  5. R

    ✍️ Arts/Lit Malaking tulong ng free internet

    Sa panahon ngayon, napakahalaga ng Internet Connection sa isang Estudyanting katulad ko. Napakalaking tulong nito sa aking pag-aaral, lalo pa't ang Course ko ay InfoTech. Some of my Homeworks... Case Studies... can be found in the internet or more on research. Kung kaya't ng matoto akong...
  6. R

    🔒 Closed Xp psiphon config

    Working pa sya sa akin... >>> Remove ".ehi"<<< #SHARE #RESPECT #CreditssaMayGawa #thankyou
Back
Top