Programming
PHP, Perl, Pyhon, bash, javascript and jQuery and probably other languages to come. This category is all about programming!
jQuery events handling
jQuery events handling Here we are with our next tutorial about events handling in jQuery. We arrived pretty far. By now you should know how to select elements from the DOM, use them further from traversing and all kinds of manipulations. What are events? Events are actions that can be detected by your Web Application
5 of the best PHP IDE for programming
5 of the best PHP IDE for programming What are the best PHP IDE? What does IDE stands for? IDE refers to a software that provides a programmer comprehensive features to and tools to ease their work. An IDE or interactive development environment normally offers the programmer a source code editor, a build automation tools and a debugger.
jQuery DOM manipulation methods
jQuery DOM manipulation methods In today’s tutorial we will learn how to manipulate DOM elements. We can add elements one after another, replace one element with another one, get properties such as width or height or remove completely elements from the DOM. A few of these methods — such as .attr(), .html(), and .val() — also act as “getters”,
Install phpmyadmin mcrypt error
About phpmyadmin A little bit of phpmyadmin, this is an open source php script designed specifically to manage Mysql server over the web. It is also supporting MariaDB or Drizzle database server and has a wide range of operation that can be done directly from the web. It provides support for: browse and drop databases, tables,
Hash encryption methods using php
LE 31 October: Thank you Fanis! Hashing methods using php Hashing is the basic of them all when it comes to security, in basic scripting md5 is the easiest basic method of hasing. A lot of developers use this for basic protection, including wordpress developers for their passwords. I confirmed this today when a client of mine
jQuery css methods
The jQuery library supports almost all of the selectors included in CSS 1, 2 and 3. When using jQuery, the developers can built websites without carring too much about the browser, because jQuery supports also older versions of Internet Explorer (Be careful, because jQuery 2.0 doesn’t support anymore IE 6, 7 or 8. This can
How to query DNS records using PHP
How to query DNS records using PHP DNS records are meant to be stored on a DNS server, using these servers you can easily get specific DNS records for your own application, apply specific limits or the like. In my license degree I remembered making a similar cross-platform app that would debug a domain DNS
jQuery DOM Traversing
jQuery DOM Traversing Once you have made an initial selection with jQuery as we learned in the past tutorial about jquery selectors, you can traverse deeper into what was just selected. In order to master the DOM traversal you have to be familiar with three basic parts: parents, children, and siblings. jQuery has lots of