Search
-
Popular Posts
-
-
Recent Posts
Follow for New Updates
Tags
analytics api apple blog browser chrome chromium Design dropbox email extension facebook firefox google greasemonkey hack ipad javascript jQuery jquery ui keyboard linux logo mac Marketing news osx php portfolio prius project quicksilver scam search SEO shortcuts social spam ssl twitter unix ux video windows wordpress
Tag Archives: php
Fix “Post Types Order” plugin error with HTTPS
The WordPress Plugin Post Types Order by NSP CODE is helpful in as it allows you to Order Posts and Post Types Objects using a Drag and Drop Sortable javascript capability But unfortunately the plugin does not work with wordpress … Continue reading
Posted in Tech Tips, Web Development
Tagged https, php, plugin, secure, ssl, wordpress
Leave a comment
PHP Auto Generate Status Header: function
PHP Function to Auto Generate Status Header This is from the CodeIgnitor Common Functions Library. It is very useful: // ———————————————————————— /** * Set HTTP Status Header * * @access public * @param int the status code * @param string … Continue reading
Fake Sendmail for Mac (linux)
When developing in PHP perhaps you need to set up a sendmail that just outputs things to text. No need to setup delivery via SMTP. Just create an executable ruby script somewhere, for example: /usr/bin/fake-sendmail.sh with following content: $ touch … Continue reading
Heredocs and Nowdocs in PHP
A here document (also called a here-document, a heredoc, a here-string or a here-script) is a way of specifying a string literal in command line shells including all the Unix shells (sh, csh, ksh, Bash and zsh) and the Windows … Continue reading
The PHP Object Expands in PHP5
Starting with PHP 5, the object model was rewritten to allow for better performance and more features. This was a major change from PHP 4. PHP 5 has a full object model. Among the features in PHP 5 are the … Continue reading
Good Practices in PHP
Here are a few tips for those of you who’d like to write good code in PHP: Set up a Development Server Set up a development server or sandbox. Don’t write, test, or develop code on a production server. If … Continue reading
Most Popular Programming Languages
Most Popular Languages as of January 2012 PositionJan 2012 PositionJan 2011 Delta in Position Programming Language RatingsJan 2012 Delta Jan 2011 Status 1 1 Java 17.479% -0.29% A 2 2 C 16.976% +1.15% A 3 6 C# 8.781% +2.55% A … Continue reading
Posted in Marketing, Tech Opinion, Web Development
Tagged (Visual) Basic, Ada, C, Delphi/Object Pascal, Java, javascript, Lisp, logo, Lua, Objective-C, Pascal, Perl, php, PL/SQL, Python, R, ruby, Transact-SQL
Leave a comment
Complete list of built-in PHP functions
Phar PharData PharException PharFileInfo abs acos acosh addcslashes addslashes aggregate aggregate_info aggregate_methods aggregate_methods_by_list aggregate_methods_by_regexp aggregate_properties aggregate_properties_by_list aggregate_properties_by_regexp aggregation_info apache_child_terminate apache_get_modules apache_get_version apache_getenv apache_lookup_uri apache_note apache_request_headers apache_reset_timeout apache_response_headers apache_setenv apc_add apc_cache_info apc_clear_cache apc_compile_file apc_define_constants apc_delete apc_fetch apc_load_constants apc_sma_info apc_store apd_breakpoint apd_callstack … Continue reading
Using json_encode() and json_decode() in PHP4
I use json_encode() a lot for AJAX calls. Teamed with jQuery’s $.getJSON(), it’s too convenient not to use. Unfortunately, json_encode() doesn’t come standard until PHP 5.2. To add insult to injury, many current *nix distros don’t include PHP 5.2 in … Continue reading