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
PHP: Convert date to timestamp
PHP's strtotime() gives $timestamp = strtotime ( '22-09-2008' ); Which does work with the Supported Date and Time Formats D...
PHP: MySQL vs Mysqli
More beyond that performance mysqli have others relevant features: If you have a look at MySQL Improved Extension Overview , it should tel...
How to debug: unexpected T_VARIABLE PHP
An unexpected T_VARIABLE means that there's a $variable where there can't be one yet. Missing semicolon It most commonly in...
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...
Security Article: How making secure HASH and Salt for password in PHP
The objective behind hashing passwords is simple: preventing malicious access to user accounts by compromising the database. Dont'...