Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Anonimista

Members
  • Joined

  • Last visited

  1.    Anonimista reacted to a post in a topic: Learning PHP functions
  2. I believe the OP uses 'classic' ASP' / VBScript, the first Google result for 'use ajax with classic ASP' is from W3Schools.
  3.    Anonimista reacted to a post in a topic: Woohoo!
  4. I am fully aware of the advantages of using namespaces, but I'm interested to find out how many of you use them in your day-to-day work, for what types of projects etc. I did a quick research and Zend and Symfony use namespaces, while CodeIgniter, CakePHP and YII don't. Thanks in advance.
  5.    Anonimista reacted to a post in a topic: New to PHP
  6.    Anonimista reacted to a post in a topic: Share my stupidity
  7. Lately, this:
  8. Here is a possibly related article: Why can't we have column alias in ORDER BY? I don't know why the query works against one database but not the other, maybe different compatibility level, but I can't test it right now.
  9.    Anonimista reacted to a post in a topic: Should marketers learn to code?
  10. Really Bad Reasons to Use Global Variables "What's a 'local variable'?" "What's a 'data member'?" "I'm a slow typist. Globals save me keystrokes." "I don't want to pass it around all the time." "I'm not sure in what class this data belongs, so I'll make it global."
  11.    fleur reacted to a post in a topic: Using the Starkers theme in Wordpress
  12. I believe it is like this (only starting with WordPress): - Register the sidebar in your functions.php: if(function_exists('register_sidebar')){ register_sidebar();} - in sidebar.php check if any widgets are added to the sidebar and if not display the static sidebar (dynamic_sidebar() displays the widgets): <?php if(!function_exists('dynamic_sidebar') || !dynamic_sidebar()) : ?> <li> <h2>Static sidebar...</h2> </li> <?php endif; ?> - include the sidebar in index.php: <div> <?php get_sidebar(); ?> </div> Like here: See How Easy It Is To Widgetize WordPress Themes
  13. Too bad nobody responded to this, if you get it to work please post it here.
  14. Good luck!
  15.    Anonimista reacted to a post in a topic: Website Design Review
  16. If you mean changing controller default action, try this article: Creating Custom Routes
  17.    Anonimista reacted to a post in a topic: Using active menu
  18. Yes, I've seen more than a few bloated IT books. Probably a few simple steps that show the reader how to get everything they need to run the code would be enough.
  19. Maybe add an introduction that explains how to install PHP and run scripts.
  20. There is a fairly large list on SourceForge: (I found it while looking into PHP spell checking.)
  21. Is the code failing only with that one child class? You could try posting a stripped down version of your parent and child class and the minimum amount of code that reproduces the problem, something that can be tested.
  22. Could you post a simple example that reproduces the problem?

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.