@media print werkt niet – Probleem opgelost

@media print werkt niet – Probleem opgelost

@media print werkt niet? Zodra je de website wilt afdrukken vervalt alle CSS? Daar kun je gek van worden, maar gelukkig hebben we de oplossing gevonde...
Parent scroll to top on reload Iframe

Parent scroll to top on reload Iframe

Met dit stukje code zorg je ervoor dat je Parent pagina weer naar boven scrollt wanneer een bezoeker op een linkje in je Iframe klikt! Erg handig voor...
Make div block not auto stretch to container width

Make div block not auto stretch to container width

Okay now what if, you have a container and place a div in it and this div auto stretches to the full width of the container. What if you don’t w...
Line breaks in ical format

Line breaks in ical format

When writing a description in ical format you and you want to mark the end of a line you can use the following code. \\n Use this at the end of every ...
Dynamische variabelen maken met PHP

Dynamische variabelen maken met PHP

Wanneer je verschillende variabelen moet combineren tot een nieuwe variabele, dan kun je dat in php eenvoudig doen door deze combinatie tussen {} te z...
Custom Logo Width and Height in WordPress

Custom Logo Width and Height in WordPress

Set your own custom logo width and height on a wordpress thild theme. Let me guess you want to add a logo to your new wordpress theme and wordpress te...
How to delete all rows MySQL table

How to delete all rows MySQL table

If you would like to delete records from a MySQL table you can use one of the following options: DELETE FROM ‘TABLE NAME’ DELETE FROM take...