| Visit tutorial >> |
| A video tutorial on how to make a flash front end, and PHP/Mysql backend guest book very easily |
| Hits: 1454 |
| Visit tutorial >> |
| This ASP source code describes a short way to select a record from database. First we need to calculate how many records we have in our table. Using randomize function, we generate a random number between 0 to count of records in database. Last part of code to select our record using our random number. We must move dynamic cursor in database table and move it to row number. There a few ways to move cursor to row, but personally we can do it similiar as paging records. We select all records from table dividing one record per page. |
| Hits: 167 |
| Visit tutorial >> |
| A few years ago (the distant past in computer time), creating a database structure from scratch involved first analyzing your needs and then laying out the database design on paper. You would decide what information you needed to track and how to store it in the database. |
| Hits: 203 |
| Visit tutorial >> |
| Oracle introduced powerful queuing mechanisms where messages can be exchanged between different programs. They called it Advanced Queuing AQ. Exchanging messages and communicating between different application modules is a key functionally becoming important as soon as we leave the database servers SQL and PL/SQL programming domain. We do not have to install additional middle-ware dealing with inter-process communication and transaction monitoring. We can directly use an existing and well-known database and can benefit from given functionalities. |
| Hits: 736 |
| Visit tutorial >> |
| Creating a Templating System Using Object Oriented Programming. When building a website, things can get a bit complicated with code written inside the template. A templating system serves to separate the structure (HTML) from the style (CSS) from the code/content (PHP and database) with PHP?s object oriented programming functions. |
| Hits: 1058 |
| Visit tutorial >> |
| Checkboxes in web forms are useful because they allow the person filling out the form to choose from a wide range of possible choices. This article will demonstrate how to store checkbox data in a database in a manner that follows good database design principles. |
| Hits: 972 |
| Visit tutorial >> |
| By reading this tutorial you will find out how to port a MySQL database over to an Microsoft Access database file.If you needed a method for multiple people to manage the database and a method to make the database portable here is how you can do it. |
| Hits: 708 |
| Visit tutorial >> |
| Learn how Flash sends data to the Database. This section is most probably the easiest of the whole tutorial. It is divided into three parts. |
| Hits: 939 |
| Visit tutorial >> |
| This tutorial assumes you've correctly setup MySQL database and Connector/J JDBC driver. What are Database URLs in JDBC? URL stands for "Uniform Resource Locator". You will be familiar with HTTP URLs that you normally use to access a web site. URLs are used to identify a resource using a unique name. Same goes for database URLs in JDBC. JDBC requires that all database connection strings should be represented by URLs. |
| Hits: 344 |
| Visit tutorial >> |
| Multicolumn Output from a Database with PHP by Intro OK so you know how to get your data out of a database and display it. But it looks rather dull in a single column down the screen doesn t it? Today you will learn how to put that data into multiple columns. |
| Hits: 301 |