Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged functionality

Rss Feed Group items tagged

Redesign Unit

Custom Website Design, Tips For Making a Website Functional - 0 views

  •  
    Make it sure that the Web Redesign is pleasing to the eyes with subtle color selection. It should not be glaring and distracting for the eyes. Also the banner advertisements or animations should not be harsh on eyes. Neither it should be harsh, nor dull in appearance.
Redesign Unit

Website Redesign Pricing - 0 views

  •  
    We are professional website redesigning services provider. Our focus is to redesign your existing website with a new look and feel and enhance the website with better look and feel and functionality.
Redesign Unit

Website Redesign, Web Redesign, Website Redesign Services, Professional Web Design, Web... - 0 views

  •  
    We are professional website redesigning services provider. Our focus is to redesign your existing website with a new look and feel and enhance the website with better look and feel and functionality.
Redesign Unit

Thomas Built Buses Launches Redesigned Web Site Focused on Customer Needs - 0 views

  •  
    Users will find an improved navigation and new search functionality that make it easier to find product updates, news and other pertinent information about Thomas Built buses, parts, financing, training and service. There are also dedicated sections to Thomas' line of child care, activity, specialty and, of course, school buses.
Redesign Unit

SBS Group Launches New Website Redesign - 0 views

  •  
    a business solutions technology provider, today announces the launch of its redesigned website, www.sbsgroupusa.com. The new design allows for easier navigation, provides enhanced functionality,
Mr Ronny

Is Joomla the Most Powerful CMS - 0 views

  •  
    Now a days software market is loaded with Content Management Systems. These systems have great functionality and they provide the framework to develop a dynamic website having great look and feel. Joomla is one of the most powerful CMS. This article is an attempt to highlight the features of Joomla CMS.
Redesign Unit

Designing Your Site - 0 views

  •  
    Design is the process of choosing the look and the layout. The focus is not just on appearance, it's also on function: you need to make choices on colors and images, and on how the site will work.
Jungle Jar

JungleJar | 10 Simple Things To Make Your Wordpress Theme 10 Times Better - 0 views

  •  
    When developing Wordpress Templates, we sometimes overlook the small easy things we can do to make our theme much better. When you're days into a project, any project, developing developers tunnel vision isn't hard to do. This article serves not as the ultimate go-to guide for Wordpress shortcodes, but instead it serves to remind us of a few small and easy things we can incorporate into our themes within seconds and they function with robust and flexible ease.
Jungle Jar

JungleJar | New Free Wordpress Template: vexed.box - 0 views

  •  
    This is a clean Wordpress template capable of displaying large amounts of content without suffering aesthetically nor functionally.
Raja uk

Burst Engine | Vector anior animation engine - 0 views

  •  
    The Burst Engine is an OpenSource vector animation engine for the HTML5 Canvas Element. Burst provides similar web functionality to Flash and contains a layer based animation system like After Effects.
jdr santos

CSSTidy - 5 views

  •  
    "CSSTidy is an opensource CSS parser and optimiser. It is available as executeable file (available for Windows, Linux and OSX) which can be controlled per command line and as PHP script (both with almost the same functionality)."
Raja uk

Small Rich Text Editor | jQuery | Ajaxmint.com - 0 views

  •  
    Small footprint, Cross-browser, Ajax Image upload, HTML Cleanup with PHP back-end rich text editor with all basic Rich Text functionality included.
Raja uk

PHP ajax login form using Jquery | Ajaxmint.com - 0 views

  •  
    Create a new PHP ajax login functionality using Jquery. You can easliy switch the data source between database and PHP array, login authentication can be using username or email, or even both of 'em by changing the config, automattic redirection could be done within the javascript config.
Raja uk

ContextMenu Plugin | jQuery | Ajaxmint.com - 0 views

  •  
    This plugin enables you to display a custom context menu on right click in browsers that support it. This is commonly used in web applications that are simulating desktop behavior or wish to add advanced functionality for their users
Raja uk

Dynamic Poll with jQuery and PHP | Ajaxmint.com - 0 views

  •  
    When you combine some neat functionality courtesy of PHP with the cleverness of jQuery you can produce some pretty cool results. In this tutorial we'll create a poll using PHP and XHTML, then make use of some jQuery Ajax effects to eliminate the need for a page refresh, and to give it a nice little bit of animation.
Jochen Burkhard

JSON Editor - 0 views

  •  
    This editor allows for easy editing of json strings, after loading a sample from the dropdown list click 'build tree', expand the tree, click nodes and start changing! Also try the xml2json functions for quickly converting xml to json.
Kashif Mehmood Mughal

How can use the Animated effect of jQuery | Dzinepress - 7 views

  •  
    is the function of jQuery that use for the animated effect of jQuery. This feature of jQuery makes thousands of things easy for developer( not written millions of line of code )and you can achieve the animated high quality effect. This is compatible with all browser...
Herb Tucker

PHP: Expressions - Manual - 0 views

  • (scalar values are values that you can't 'break' into smaller pieces, unlike arrays, for instance
  • Expressions are the most important building stones of PHP. In PHP, almost anything you write is an expression
  • The simplest yet most accurate way to define an expression is "anything that has a value"
  • ...16 more annotations...
  • PHP also supports two composite (non-scalar) types: arrays and objects. Each of these value types can be assigned into variables or returned from functions.
  • PHP is an expression-oriented language
  • Since assignments are parsed in a right to left order, you can also write '$b = $a = 5'
  • and that's the value of the assignment itself
  • A very common type of expressions are comparison expressions. These expressions evaluate to either FALSE or TRUE. PHP supports > (bigger than), >= (bigger than or equal to), == (equal), != (not equal), < (smaller than) and <= (smaller than or equal to). The language also supports a set of strict equivalence operators: === (equal to and same type) and !== (not equal to or not same type). These expressions are most commonly used inside conditional execution, such as if statements.
  • and is assigned back into $a,
  • The last example of expressions we'll deal with here is combined operator-assignment expressions
  • Adding 3 to the current value of $a can be written '$a += 3'
  • This means exactly "take the value of $a, add 3 to it, and assign it back into $a"
  • Any two-place operator can be used in this operator-assignment mode, for example '$a -= 5' (subtract 5 from the value of $a), '$b *= 7' (multiply the value of $b by 7), etc.
  • There is one more expression that may seem odd if you haven't seen it in other languages, the ternary conditional operator:
  • If the value of the first subexpression is TRUE (non-zero), then the second subexpression is evaluated, and that is the result of the conditional expression. Otherwise, the third subexpression is evaluated, and that is the value
  • Some expressions can be considered as statements. In this case, a statement has the form of 'expr ;' that is, an expression followed by a semicolon. In '$b = $a = 5;', '$a = 5' is a valid expression, but it's not a statement by itself. '$b = $a = 5;' however is a valid statement.
  • One last thing worth mentioning is the truth value of expressions. In many events, mainly in conditional execution and loops, you're not interested in the specific value of the expression, but only care about whether it means TRUE or FALSE. The constants TRUE and FALSE (case-insensitive) are the two possible boolean values.
  • Throughout the rest of this manual we'll write expr to indicate any valid PHP expression.
  • Functions are expressions with the value of their return value.
  •  
    Expressions defined and discussed with highlighting
awqi zar

Shortening URLs for goo.gl with Google's URL Shortener API - PHP articles, tutorials an... - 2 views

  •  
    We will use the cURL library to perform the required HTTP requests to make use of this API. Additionally, JSON data is extensively used for both requests and responses, so we will use the json_encode() and json_decode() functions accordingly.
« First ‹ Previous 101 - 120 of 384 Next › Last »
Showing 20 items per page