Clear the browser cache of CSS or JavaScript Using PHP

6 years ago

Other than caching every hour, or every week, you may cache according to file data. [crayon-679fd50311ed4484081150/] or use file modification…

Current Site URL – Codeigniter

To get host url of current server simply replace application\config\config.php [crayon-679fd503122dd413181057/] with [crayon-679fd50312303219008773/]  

6 years ago

PHP: fopen error handling

You should first test the existence of a file by file_exists(). [crayon-679fd5031243a839915655/] or simple solution without exceptions: [crayon-679fd5031243d145680964/]  

6 years ago

Random String PHP

[crayon-679fd503124d0480933057/] Output the random string with the call below: [crayon-679fd503124d2581026153/]  

6 years ago

PHP function to make slug (URL string)

Note: from WordPress Use it like this: [crayon-679fd5031255a074645277/] Code: [crayon-679fd5031255c438421185/]  

6 years ago

Include all files with in the folder

[crayon-679fd50312633813845448/]  

6 years ago

How can I remove 3 characters at the end of a string in php?

[crayon-679fd5032b41c825301685/] or [crayon-679fd5032b427759155548/]  

7 years ago

Print all value of an array – Smarty

[crayon-679fd5032b627873484720/]

7 years ago

Receive JSON POST with PHP

[crayon-679fd5032b71c467297602/] instead of [crayon-679fd5032b71f287002263/] It will give you POST data as is. You will be able to decode it using…

7 years ago

Adding divs to a foreach loop every 4 times

The output look like: [crayon-679fd5032b7b2204882273/]     [crayon-679fd5032b7b4551760774/]

7 years ago