Ed Zynda

Coder | Hacker | Superhero

Create A Self-destructing, Encrypted Message App In Laravel Part 2

Posted on · Tagged in

The first thing we’ll need to do is create a default layout. This is the layout that the rest of our views will extend. Let’s save it as ‘app/views/layouts/default.blade.php’. …

Read more »

Tip: Custom Scripts In WordPress

Posted on · Tagged in

WordPress is a great CMS (Content Management System) is you want to get a site up and running very quickly. It’s themable and within the theming framework, WordPress includes the ability to include popular assets like JQuery. All it takes is a simple command. <?php wp_enqueue_script(‘jquery’); What if you don’t want to use the version of JQuery included in WordPress though? There are several reasons you would require a different version, compatibility for example.…

Read more »

Tip: Quick Test For XSS Vulnerabilities

Posted on · Tagged in

There are a lot of things to keep in mind when it comes to web development. Security should be at the top of your list. If you read up on web application security, you’re probably familiar with cross-site scripting or XSS attacks. XSS attacks can cause serious damage but are really simple to prevent. If you aren’t familiar, a XSS vulnerability occurs when your application takes user data and then sends it to the web browser without proper validation.…

Read more »
Subscribe to my newsletter and get a free copy of my book, Aspect Oriented Programming in PHP.