All posts by: "admin"

About admin

  1. Articles

    Increase phpMyAdmin Session Timeout To More Than 1440 Seconds

    If you work with phpMyAdmin, you may have come across a nasty message that says: “No activity within 1440 seconds; please log in again”. This message is shown because phpMyAdmin has a session timeout time limit of 1440 seconds i.e. 24 minutes. So if you are away from your desk for at least 24 minutes and […]

  2. Articles

    Easily Upgrade phpMyAdmin For Wamp Server In Localhost To Any Version

    If you are PHP developer and use phpMyAdmin, then you know how exciting and important it could be to harness all the latest features that phpMyAdmin includes in its releases. So the question arises now. If you wish to use all the latest features, do you know how to upgrade just the phpMyAdmin part for Wamp […]

  3. PHP

    PHP Refresh Page Examples

    You may know how to refresh page using JavaScript. But, do you know how to refresh page using PHP? In this article, I am going to share very easy way to make page refresh using PHP. So read on for more info.

  4. PHP

    PHP Return String From String Using Word Limit Examples

    Some times, it might be useful to extract string from a given string, based upon the word count. A good example of this is an excerpt of WordPress. As you know, an “excerpt” is just a sneak peak of the article. And it is limited by it’s word count (or any other desired criteria). So […]

  5. Tips and Tricks

    SOLUTION WordPress Fatal error: Call to undefined function

    While working with WordPress, at one point of time or the other, you may have come across error message that says: “Fatal error: Call to undefined function … “. In this message, the undefined function could be just about anything such as feed_content_type or get_adjacent_post or wp_get_recent_posts, etc. So how can we solve this? This is exactly what this […]

  6. jQuery

    jQuery Checkbox Check / Uncheck Examples

    Among all the form elements, the check box is one of the essential element that we get to work with, almost every day.  So at one point of time or the other, it might be useful to check a checkbox or uncheck a checkbox dynamically using jQuery. So in this article, I am going to […]

  7. jQuery

    jQuery Check If Div Is Empty Examples

    When working with Divs and jQuery, there might have been a situation when you needed to know dynamically if any given div contains any content at all or not. Based upon this, you might want to trigger an action. So in this article, I am going to share easy ways to find out if a […]

  8. jQuery

    jQuery Change Select Options Examples

    Form element manipulation using jQuery can be of immense help when working with forms. As such, it is desirable to know if the options of a select dropdown list can be changed or not. Well, the answer is yes! We can dynamically change the options of a select dropdown. We can remove existing options (if […]

  9. jQuery

    jQuery Find Value In Array Examples

    Talking about arrays in jQuery, it can be really helpful to know if a value exists in an array or not. That said, in this article, I am going to share examples on how to find if a specific value exists in an array or not using jQuery. Try the demo to see how it […]