Tuesday, February 6, 2024

Prevent unauthorized access to project's folders in PHP through URL

Related Posts:

  • Data structure and algorithmProgram for circular queue in c++ #include<iostream> using namespace std; const int size=5; class cqueue { private:     int cq[size];     int front,rear,data; public:     cqueue()   &… Read More
  • 8086 ProgrammingHow to display a string terminated by $? TITLE DISPLAY A STRING .MODEL SMALL .STACK 32 .DATA STR1 DB ".....THE KING OF JUNGLE......$" .CODE MAIN PROC FAR MOV AX, @DATA MOV DS,AX MOV AH,09 MOV DX, OFFSET STR1 INT 21H … Read More
  • 8086 programmingHow to display a string using character reading function? TITLE DISPLAY STRING USING CHARACTER READING FUNCTION .MODEL SMALL .STACK 32 .DATA STR1 DB "....THE KING OF JUNGLE...." LEN DW $-STR1 .CODE MAIN PROC FAR MOV AX,@D… Read More
  • Data structure and algorithmProgram for linear queue in c++ #include<iostream> using namespace std; const int size =5; class queue { private:     int front,rear,n;     int q[size]; public:        queue() &n… Read More
  • Data structure and algorithmProgram for stack in c++ #include<iostream> using namespace std; const int size=5; class stack { private:     int top,q[size],data; public:     stack()     {     &nb… Read More

0 comments:

Post a Comment