Posts by MARCOS OLIVEIRA • 145 points
3 posts
-
2
votes1
answer1512
viewsA: How to Block Download PDF Files
http://www.botecodigital.info/php/protegendo-arquivos-de-download-com-login/ Take a look at this link, I think it might help. index php. <?php session_start(); ?><html> <head>…
phpanswered MARCOS OLIVEIRA 145 -
6
votes2
answers190
viewsQ: Class properties difference vs Instance
What is the purpose of creating attributes in the class if I can create in the instance itself?
-
6
votes2
answers602
viewsQ: Difference in C/C++ array declarations
What is the difference and impact that each of these 3 vector statements bring to my code? int n; cin >> n; int* arr = new int[n]; int n; cin >> n; int arr[n]; int n; cin >> n;…