PHP Articles
PHP (which stands for PHP: Hypertext Preprocessor) is a widely used, general-purpose server side scripting language which is especially suited for web development
A while back I had published a simple code snippet for a PHP Spintax Function on CodeDevelopr. This post is the new improved version 2 as the old version did not perform well on large strings. We are now using a nice PHP class as well but it can be wrapped into a simple spintax function if you prefer. What
Read More →
About a few months ago I made the decision to start doing Freelance work. I have been a Web Developer for over 12 years now but I have never done any kind of Freelance work on a regular basis. So I read hundreds of Articles, Books, and all sorts of tips and tricks. Covering everything from the best Contract to
Read More →
The Problem: Brute Force Attack If you have ever ran a successful user based website where user’s have Accounts with a username and password, you may have been the target of a Brute Force Attack. Where some one, usually with the aide of a bot tries to crack user passwords and gain access to there account. Preventing large numbers of
Read More →
A Comma-separated values (CSV) file stores tabular data (numbers and text) in plain-text form. Often it is one record per line seperated by a comma or any other delimeter. The comma , is often used in USA/UK CSV files where Germany often uses a ; instead This is an example of a simple CSV file that has 4 fields and 2 records (1 per line)
Read More →
UPDATE: Please use the new improved version PHP Spintax Class HERE Internet Marketers often use something they call Spintax. Spintax let’s you wrap text in syntax like this {option 1|option 2|option 3} and when processed, it will randomly select one of the text in between the Pipes to show a random text. This function also allows you to nest Spintax
Read More →
Most of you know when you are viewing a Wordpress site simply by viewing the websites HTML sourcecode in the browser. The easiest way to identify that a WordPress site is being used while looking at the sourcecode, is when you see the file paths/URL’s for the sites Assets (Images, CSS, and Javascript files)
Read More →
Since 5.2.2 it is now possible to capture a website or any window’s screenshot to an image with PHP as long as it is running on a Window’s machine. Most web-servers are running Linux but this could be useful for a tool on your home Dev server. Capture Whole Screen
Read More →
Subscribe to the CodeDevelopr Email Newsletter for Web Developers. CodeDevelopr will never spam your mailbox and will likely only send maybe 1 to 4 email newsletters per month about Web Development topics ranging from PHP, Python, Ruby & Rails, Javascript, jQuery, CSS, HTML, Web Design, Web Development, Databases, MySQL, Programming, and lots more in that field.
Read More →