There has always been the necessity to have a definitive guide on PHP-Nuke. Due to time constraints, nobody has ever had the will to carry out this operation. Not any more! With this book, PHP-Nuke now posesses the most comprehensive guide on the subject, suitable for newbies and advanced users alike.
PHP-Nuke utilizes as hinge of its own structure the duo PHP+ MySQL, very often being accompanied by the Apache web server. Many modules have integrated many other languages, such as Javascript, Java, Flash and also even systems that serve, through the portal, sounds and films in streaming mode (Online Radio, TV Online, Images, Files…). From version 6.x onwards, the compatibility has been extended to include other databases as well, in order to extend the user base even more vastly.
Read the rest of this entry »
This laboration is split in two parts, the first part about simple HTML programming and the last about SQL databases, with focus on MySQL databases
Read the HTML tutorial on http://www.w3schools.com adn the MySQL tutorial on http://www.mysql.com/doc/en/Tutorial.html. If you don’t have access to a MySQL database read the examples in the tutorial, these will be a great help when you start to solve the Tasks on the MySQL database. You should also be familiar with the Language Reference section.
Read the rest of this entry »
MySQL is an open source relational database management system which is quite popular for light-weight web applications. Over the last few years, the product has also added some features which allow it to be used for larger business tools. This paper will provide an overview of this software on Windows. MySQL does not have as many features as PostgreSQL, and while many of the more advanced features are not as mature. However one would expect it to perform substantially better than PostgreSQL on Windows because of its thread-based architecture (PostgreSQL uses a process-based architecture instead).
Read the rest of this entry »
This project serves as an introduction to client-server programming. You will be expected to implement an abstract protocol called Simple Registration Protocol using simple TCP socket programming. To illustrate the use of the protocol, you will also implement a concrete application: a simple appointment management system. This application will introduce you to the use of LAMP (Linux, Apache, MySQL and PHP), a free, powerful and commonly-used combination for Web-based applications.
Read the rest of this entry »
MySQL is a popular database with more than 4 million users. It is one of the fastest relational databases in the market. Many companies are using it to support their websites, data warehouses, and business applications. MySQL was developed by a Swedish company named MySQL AB. The product is distributed under GNU General Public License (GPL). It can support multiple users concurrently on the network. Students can connect to a MySQL database server standalone on their own computer or from the network. You can download it free from http://dev.mysql.com/downloads/mysql/4.1.html. MySQL runs on Windows, Linux and Solaris. This tutorial demonstrates using MySQL from the Windows operating system.
Read the rest of this entry »
This chapter provides a tutorial introduction to MySQL by showing how to use the mysql client program to create and use a simple database. mysql (sometimes referred to as the “terminal monitor” or just “monitor”) is an interactive program that allows you to connect to a MySQL server, run queries, and view the results. mysql may also be used in batch mode: you place your queries in a file beforehand, then tell mysql to execute the contents of the file. Both ways of using mysql are covered here.
To see a list of options provided by mysql, invoke it with the –help option:
shell> mysql –help
Read the rest of this entry »
09 Feb
Posted by jj as Linux
Introduction Gambas is a Linux replacement for Visual Basic (but by no means it’s a clone). It is a free development software based on a Basic interpreter. To put it in short, it is a Basic Language with object extensions. If a RAD tool is required for say designing a GUI or a front-end to access MySQL or PostgreSQL database, then Gambas is the tool. KDE pilot application and network applications (with the Gambas Network ToolBox) can also be designed. Also Gambas has multilingual support and thus a program can be translated into many languages.
Read the rest of this entry »