796 shaares
295 results
tagged
WebDevelopper
CSS animations are right up there with sliced bread. CSS animations are efficient because they can be hardware accelerated, they require no JavaScript overhead, and they are composed of very little CSS code. Quite often we add CSS transforms to elements via CSS during :hover, and we also create keyframe-based animations by adding a className, but did you know you can animate elements using media queries as the trigger? Let's have a look!
We've covered PHP's PDO API a couple of times here on Nettuts+, but, generally, those articles focused more on the theory, and less on the application. This article will fix that!
To put it plainly, if you're still using PHP's old mysql API to connect to your databases, read on!
To put it plainly, if you're still using PHP's old mysql API to connect to your databases, read on!
Howard G. "Ward" Cunningham dit Ward Cunningham est le mec qui a inventé et développé le premier wiki en 1994 baptisé WikiWikiWeb. Et Ward n'est pas satisfait des Wiki existants... Il a donc décidé de s'y remettre et développe actuellement une nouvelle vision du wiki qu'il veut innovant et précis en terme de compilation et présentation de données. Le nom de ce projet ? Smallest Federated Wiki
Saying the phrase "user agent" or "user agent string" is tantamount to saying a swear word. Developers used to use the user agent to detect if a browser had a given feature, instead of, you know, checking to see if the feature actually existed via object or property detection. Those days are behind us though, but one of the web's dirty secrets is that the user agent still has many uses.
Recently I came across the post by Matt Wilcox called CSS Lint is harmful, ranting about the useful free tool CSS Lint. The “Don’t use IDs in selectors” suggestion seems to have offended Matt the most, but I was surprised that many commenters also mentioned this as being a reason to avoid CSS Lint. This surprised me because smart people have been saying prefer classes to IDs for a while now.
For some uses this definition is adequate. However, the phrase “content inside a blockquote must be quoted from another source” makes it annoying or impossible to make some common changes or additions to a <blockquote>.
Rants about PHP are everywhere, and they even come from smart guys. When Jeff Atwood wrote yet another rant about PHP, it made me think about the good parts of PHP.
Xoops Engine is the next generation of XOOPS, designed as an application development engine for web and mobile. It is released under New BSD License and aims at building a sustainable ecosystem to benefit all contributors and user in technology and business.
Xoops Engine is actively developed by most active and talented XOOPS core developers led by Taiwen Jiang (a.k.a. phppp), who was Project Lead and Core Dev Lead for XOOPS from 2007 to 2011, core developer from 2005 to 2007.
Xoops Engine development is fully encouraged by support from XOOPS founder Ono Kazumi: "I hope that you keep on going with the development of XE, since there is no bright future ahead with X2."
Xoops Engine is actively developed by most active and talented XOOPS core developers led by Taiwen Jiang (a.k.a. phppp), who was Project Lead and Core Dev Lead for XOOPS from 2007 to 2011, core developer from 2005 to 2007.
Xoops Engine development is fully encouraged by support from XOOPS founder Ono Kazumi: "I hope that you keep on going with the development of XE, since there is no bright future ahead with X2."
The Uniform Server is a WAMP package that allows you to run a server on any MS Windows OS based computer. It is small and mobile to download or move around and can also be used or setup as a production/live server. Developers also use The Uniform Server to test their applications made with either PHP, MySQL, Perl, or the Apache HTTPd Server.
J’aime beaucoup utiliser des entités HTML à la place d’images, mais le problème, c’est de se souvenir du code HTML ou encore de retrouver le dit code sur internet.
Ce lien propose une liste de très nombreux entités HTML que l’on pourra facilement insérer dans un design ou dans du contenu. C’est toujours plus facile à lire que le site du W3C !
Ce lien propose une liste de très nombreux entités HTML que l’on pourra facilement insérer dans un design ou dans du contenu. C’est toujours plus facile à lire que le site du W3C !
If you have played with the HTML5 version of the cut the rope, you will notice that it remembers your scores for each game when you return to the site. To achieve this in your own applications you can use localStorage which is part of the Web Storage Specification. Local Storage gives developers a way to to store data in the web browser, which will be available even if the browser is closed and returned to later.
The information stored in local storage is only visible to the domain that saved it, and so you can happily place information in the store knowing other, potentially malicious, websites will not be able to access it.
The information stored in local storage is only visible to the domain that saved it, and so you can happily place information in the store knowing other, potentially malicious, websites will not be able to access it.
For any web application uploading an image is comman task. But what is the comman way to manage the uploaded files?
Generally what we do is place the uploaded file on specific folder and store the name of the image or some times path to image in VARCHAR field of the database table.
But this article is to cover the concept to store the image in mysql database. Later on we will discuss how to show the stored image from database to the web page.
Generally what we do is place the uploaded file on specific folder and store the name of the image or some times path to image in VARCHAR field of the database table.
But this article is to cover the concept to store the image in mysql database. Later on we will discuss how to show the stored image from database to the web page.
Up to PHP 5.3 we do not have any proper/core function which checks the status of the session.
Here status means, We have called the session_start() function but we wants to make sure that really session is started or not. So this status check function is not available upto PHP 5.3.
So up to PHP 5.3 if we want to check the status of the Session then we have to use below code.
Here status means, We have called the session_start() function but we wants to make sure that really session is started or not. So this status check function is not available upto PHP 5.3.
So up to PHP 5.3 if we want to check the status of the Session then we have to use below code.
This article is about to explain how you can manage database collation and character set of your database. If you are working on website which covers only one language which is english then you may not worry about these stuff.
But If you are dealing with the multilinguag website which includes various languages (chinese, hindi, gujarati, etc.) then you MUST need to take care of this stuff.
To make your database able to handle these characters of different languages you need to set proper Database Collation and Character Set for the database.
But If you are dealing with the multilinguag website which includes various languages (chinese, hindi, gujarati, etc.) then you MUST need to take care of this stuff.
To make your database able to handle these characters of different languages you need to set proper Database Collation and Character Set for the database.
Constants play an important role for writing different PHP scripts. I believe, it is very good and professional approach to design any PHP script in a way that can easily be configured on different environments like Linux or Windows – and it can easily be achieved by defining useful constants in “config.php” or any other file depending on the script nature.