Menu
Home
Recent Posts
No posts with label
C++
.
Show all posts
No posts with label
C++
.
Show all posts
Home
Subscribe to:
Comments (Atom)
Development and programming answers
Search articles
Popular Posts
Libraries: Best authentication library for codelgniter
It turns out, the russian developer Ilya Konyukhov picked up the gauntlet after reading this and created a new auth library for CI based on ...
PHP: Curly braces strings usage
They're used to escape variable expressions. From Strings : Complex (curly) syntax This isn't called complex because the syntax i...
How to prevent SQL-injection in PHP
In the front-end development we validates the user input for invalid characters. If this is not validated and inserted without any modificat...
PHP: Convert SVG image to PNG
$usmap = '/path/to/blank/us-map.svg' ; $im = new Imagick (); $svg = file_get_contents ( $usmap ); /*loop to color each stat...
PHP: Save HTML5 canvas as an image in a server
Here is an example how to achieve what you need: 1) Draw something (taken from canvas tutorial ) <canvas id = "myCanvas" ...