Articles in the Open Source Category
Common, Open Source »
Well the topic seems worrying lots of people, specially the open source lovers. But there were some rumors lots of people talk about is “End of MySQL”. When sun micro systems brought mysql people say that’s the rebirth for MySQL and afterward, oracle brought sun microsystems. Now people say as since oracle wants to promote their database, they need to demote the popular competitors. Which means MySQL is one of the major competitor for oracle, because its free and more people uses it.
In my opinion it’s a false statement because …
featured, Headline, Open Source, php, web development »
PHP (Hypertext Preprocessor) is an open source, server-side, HTML embedded scripting language used to create dynamic Web pages. PHP script is embedded within a HTML document and the programmer can jump between HTML and PHP seamlessly within the document while the code remains inaccessible to users since it is processed on the server. It combines the power of CGI scripting with the ease of working within HTML.
PHP offers several key advantages:
Cross-platform operability
Compatibility with a wide variety of databases
Support for most current web servers
Communicates with numerous network protocols
Not limited to HTML …
Common, JavaScript, Open Source, phpMyAdmin »
phpMyAdmin is the well known tool to mange mysql server and now phpMyAdmin integrating jQuery for interface changes and improvements. jQuery is one of the famous javascript library which makes the development easy and have more features such as UI elements. The jQuery is used in modifications and the new features additions where the javascript is used and also in near feature the whole phpAdmin interface can be changed to implement ajax features as well.
With the use of ajax, the access speed will increase and the user interface will be …
Common, featured, JavaScript, Open Source »
The following code demonstrates how the codes will look like. For example in navigation link the following code pattern will be used. If the JavaScript enabled it returns false to the caller which stops (it prevents the click) the usual html hyperlink navigation. If JavaScript is disabled then JavaScript function will not work and therefore by default it’s true and the normal hyperlink navigation will be executed.
Example code :
//JavaScript Function
Document.getElementById(“linklist”).onclick=getList;
function getList()
{
// The Ajax Call for the function in getlist.php file
………..
………..
………..
return false;
}
//Html
<a href=”getlist.php” id=”linklist” />
When the hyper link clicked, first the …
