How to show full post on homepage instead of excerpt?
Generally you will see on home page lists of post. Sometimes there is a need to show full post. How you will do this? To show full post on home...
Generally you will see on home page lists of post. Sometimes there is a need to show full post. How you will do this? To show full post on home...
Syntax : string crc32(string); Description : crc32() function will return CRC32 i.e cyclic redundancy checksum polynomial of 32-bit lengths of the string. This is usually used to validate the integrity of data...
Syntax : string count_chars(string, mode); Description : count_chars() function will return information about characters used in a string, which can be string with all different characters, with all unused characters and...
Syntax : string convert_uudecode(string) ; Description : convert_uudecode() function decodes a string using the uuencode algorithm. Note : convert_uudecode() function is used with convert_uuencode() function. Parameter : string – String to be...
In one of my project i was having issue of removing blue line around select control. Which is the default behavour of the control. I tried lots of things, Done...
Syntax: string convert_uuencode(string) ; Description : convert_uuencode() function will encodes a string using the uuencode algorithm. Note : Uuencode translates all strings (including binary’s ones) into printable characters, making them safe for...
Syntax : string chr (ascii); Description : chr() function will returns a character from the specified ASCII value. The ASCII value can be specified in Decimal : Decimal values are defined by a leading 0x....
Syntax : string chunk_split(string, chunklength, end) ; Description : chunk_split() function will return smaller chunks(pieces) of a string in chunklength parameter. Parameter : string – String to be chunked. chunklength – This is Optional...
Today i am writing about SQL. In the internet Era, we all are having smart phones, Gadgets etc devices. We are using them to search/surfing on net. So, how data...
Syntax : string chop (string, charlist); Description : chop function will remove predefined characters or specified characters in charlist if any from the right end of a string. This function is an alias of- rtrim() function. Parameter...
Syntax : string bin2hex (string); Description : bin2hex function will converts a string of ASCII characters to hexadecimal values. The string can be converted back using the pack() function. Parameter : string – String...
Syntax : string addslashes(string); Description : addslashes function will add backslash ( \ ) before the predefined characters. The predefined characters are: single quote (‘) double quote (“) backslash (\) NULL Parameter :...
Syntax : string addcslashes (string, charlist); Description : addcslashes function will add backslash before the specified characters in charlist parameter for the string. Parameter : string – This is a Required parameter. which needs to be escaped....
PHP 5 String Functions: PHP continues to be the mainstay of web development with several CMS, frameworks, and platforms built around it. One of the main keys to success lies...
How to upgrade to new php version in xampp from 5.3 to PHP Version 5.6.23? When we are using xampp for Website development with PHP and Apache server. Some times need...
PHP is a server side scripting language. We can make dynamic, interactive Web pages/sites. PHP is free and can be downloaded from php.net site. It is mostly used for scripting language....
Converting String to Number in PHP : When we are performing some computations, there are some string variables which stores integer as a string. So, we need to convert them...
This statement is used to delete all rows from the table. Its similar like DELETE statement BUT it does not have WHERE clause in it. Syntax: DELETE ALL DATA in table...
How to store data in a Table? Answer is very simple, Use INSERT query. There are two ways to insert data in table. Syntax: Form1 : INSERT INTO “tableName” values...
This statement is used to fetch the rows from the database table. Data is returned in the form of result table, which are also know as result-sets. Syntax: SELECT coulmn1,...