100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached
logo-home
Programmeren 2 toets samenvatting jaar 1 CMGT $5.96   Add to cart

Summary

Programmeren 2 toets samenvatting jaar 1 CMGT

 23 views  0 purchase
  • Course
  • Institution

Een samenvatting van de lessen van programmeren 2, die ik heb gebruikt om voor het tentamen te leren. Hiervoor heb ik een 5,5 gehaald zonder herkansing

Preview 2 out of 5  pages

  • January 27, 2021
  • 5
  • 2019/2020
  • Summary
avatar-seller
Ik ken de werking en afhandeling van een webrequest icm een database
Ik ken de structuur van een database
Ik ken manieren om data te onthouden tussen meerdere requests
Ik ken veiligheidsrisico's bij het werken met formulieren
Ik kan gegevens uit een database zowel gestructureerd ophalen als tonen
Ik kan gegevens uit een formulier verwerken in een database
Ik kan een database opzetten waarbij er sprake is van een veel-op-veel relatie
Ik kan een gelaagde website bouwen waarbij er sprake is van een scheiding tussen
structuur, presentatie en logica

PHPTechnieken:
PHP = P​ersonal ​H​ome​P​age-tools of ​H​ypertext ​P​reprocessor

Stappen toegang website: ​Request ​(​www.site.nl​) - ​Server ​(Hardware) - ​Webserver
(Software zoals Apache) ​Interpreter ​(PHP)​ ​- ​Response ​(HTML pagina)

Syntax: ​Basis syntax for php code
- <?php $​variabele​; ?>​ (​nooit <? ?>​, dit is verouderd)
Variabelen: ​Altijd met $-teken, geen datatypen genoteerd.
- “ ”​ zoekt variabelen, ​‘ ‘​ niet.
Datatypen:
Operatoren: ​Bewerkingen en vergelijkingen
- === ​gelijk aan & zelfde identiek/type
- == ​gelijk aan
- != / <> ​niet gelijk aan
- !== ​niet gelijk aan OF niet identiek
- $a % $b ​Modulo, overgebleven $a gedeeld door $b
- $a ** $b ​Exponentiation, $a tot de macht $b
Control statements:
Functies:
- PHP functies ​gedefinieerde functies binnen PHP
- Eigen functies ​global of local scope (​function ​functie(){ })
Loops:
- For loop ​Zolang expressie 2 ​TRUE ​is, 3 blijven executen (​for ​($i=0; $i<5; $i++){ }
- For each ​Zolang array ​TRUE ​is, als waarde executen (​foreach ​($array as $value) { }
- While loop ​Zolang expressie ​TRUE ​is, blijven loopen (​while ​($i = something){ })
- do-while ​Zolang expressie na loop ​TRUE ​is, blijven loopen (​do ​{ }​while ​($i=value);
Objecten:
Arrays:
- $myarray = [1, 2, 3];
- $myarray[2] = 3;
- $myarray[ ] = ‘hallo’;
- Meervoud voor foreach loops! ​(foreach($numbers as $number){ echo $number;}
- $myarray2 = [‘groet’ => ‘hallo’]; associative array

, Informatie bijhouden en doorgeven:
- In de ​URL ​meegenomen
- Via ​HTML Forms
- Met behulp van een ​Database
- Via ​Sessions
- Via ​Cookies
Meeste apps/sites gebruiken een combinatie!

Via URL:
Bij het opvragen van een pagina, kunnen we extra informatie aan de URL plakken.
Deze info kunnen we vervolgens in de nieuwe pagina weer opvragen.
-<a href=”url?id=1”> ​Link naar pagina ​</a>
Informatie wordt verstuurd via ​GET ($myId = $_GET[‘id])

GET:
Verstuurt informatie via de URL
Is zichtbaar in de browser
Is makkelijk aan te passen door de gebruiker
Gebruik alleen om iets op te halen!

POST:
Verstuurt informatie via HTML/PHP
Waardes zijn verstopt in HTML request
Minder makkelijk aan te passen door de gebruiker
-<form action=”create.php” method=”post”> ​Content ​</form>
-Form attribuut: ​action, method
-HTML element: ​input
-Submit button
-Attribuut: ​name, type, value, id, class

Postback:
Communicatie tussen 2 dezelfde browsers
Controleren of een form is gepost (​isset()​)
If / else om te bepalen wat we wel en niet willen tonen
-if (isset($_POST[‘submit’]){ ​$value = $_POST[‘value’] ​}

Datum & tijd PHP:
- Timestamp ​Een gedefinieerd tijdstip van een bepaalde actie, of de huidige tijd
- Unix Epoch ​Een systeem die in seconden telt vanaf een bepaald punt in tijd. (nu 1
januari 1970)

Switch:
Bevat meerdere if/elseif statements, binnen 1 expressie.
Controleert steeds dezelfde variabele/expressie
-switch ($getal){ ​case 1 break; case 2 break; case 3 break;

The benefits of buying summaries with Stuvia:

Guaranteed quality through customer reviews

Guaranteed quality through customer reviews

Stuvia customers have reviewed more than 700,000 summaries. This how you know that you are buying the best documents.

Quick and easy check-out

Quick and easy check-out

You can quickly pay through credit card or Stuvia-credit for the summaries. There is no membership needed.

Focus on what matters

Focus on what matters

Your fellow students write the study notes themselves, which is why the documents are always reliable and up-to-date. This ensures you quickly get to the core!

Frequently asked questions

What do I get when I buy this document?

You get a PDF, available immediately after your purchase. The purchased document is accessible anytime, anywhere and indefinitely through your profile.

Satisfaction guarantee: how does it work?

Our satisfaction guarantee ensures that you always find a study document that suits you well. You fill out a form, and our customer service team takes care of the rest.

Who am I buying these notes from?

Stuvia is a marketplace, so you are not buying this document from us, but from seller cakallemein. Stuvia facilitates payment to the seller.

Will I be stuck with a subscription?

No, you only buy these notes for $5.96. You're not tied to anything after your purchase.

Can Stuvia be trusted?

4.6 stars on Google & Trustpilot (+1000 reviews)

64438 documents were sold in the last 30 days

Founded in 2010, the go-to place to buy study notes for 14 years now

Start selling
$5.96
  • (0)
  Add to cart