Php Tip: Use preg_match() to perform a regular expression match
Php Tip: Use preg_match() to perform a regular expression match Regular expressions are powerful tools in...
Php Tip: Use preg_match() to perform a regular expression match Regular expressions are powerful tools in...
PHP Tip: Use mysql_close() to Close MySQL Connection When working with PHP and MySQL, it is...
Php Tip: Use mysql_fetch_array() to fetch a result row as an associative array, a numeric array,...
Php Tip: Use mysql_query() to send a MySQL query When it comes to working with databases...
Php Tip: Use mysql_connect() to open a connection to a MySQL Server When it comes to...
Php Tip: Use die() to print a message and exit the current script When working with...
Php Tip: Use header() to send a raw HTTP header When it comes to web development,...
Php Tip: Use session_start() to start a new or resume existing session When it comes to...
Php Tip: Use setcookie() to set a cookie When it comes to web development, cookies play...
Php Tip: Use date() to format a local time/date When working with PHP, it is often...
Php Tip: Use stripslashes() to un-quotes a quoted string When working with PHP, it is common...
Php Tip: Use addslashes() to quote string with slashes When working with PHP, it is common...
Php Tip: Use htmlspecialchars() to convert special characters to HTML entities When it comes to web...
Php Tip: Use str_replace() to replace some characters with some other characters in a string When...
Php Tip: Use substr() to return a part of a string When working with strings in...
Php Tip: Use strtoupper() to Make a String Uppercase When it comes to manipulating strings in...
Php Tip: Use strtolower() to Make a String Lowercase When it comes to manipulating strings in...
Php Tip: Use trim() to remove whitespace (or other characters) from the beginning and end of...
Php Tip: Use implode() to join array values with a string When working with arrays in...
Php Tip: Use explode() to split a string by a string When working with strings in...