BitDaddys Corp.
BitDaddys offers msg file solutions!

Email, Database and IT Solutions


Main Menu
Home

Product Sections
Product Locator
Email Utilities
Database Utilities
Other Products

Reference Sections
Articles
MySQL
Outlook - Import EML
.net Network Security
Flash
Fireworks
PHP
DB/C
Java
Email File Extensions
EML email file extension
MSG email file extension
TNEF email file extension
TXT email file extension
HTML email file extension
Java Script

OISV - Organization of Independant Software Vendors - Charter Member

Recommended Links

Get Firefox



Get Thunderbird  

MySQL

Find good sites at
Find good sites at Gimpsy  

 

Web Master:

Keith Birchfield


Here you can find many examples of how to use php simply and effectively

Please take a look at the below examples to help you get started on that next php project.


Example of Directory Listing

This example explores how to present the user with a list of available files. It uses the time and date stamp as the sort order and as the link name.

Click Here to see this example Code


Example of Verify User Name

This example explores how to verify that a valid user is attempting to logon. This is a simple method that should only be used when working on an intranet, and security is not a major concern.

Click Here to see this example Code

Example of Form Response

This example explores how to use php to provide a form response. This is a simple method that could be used to execute a system program to collect and provide the results in a temporary file. PHP would then display the resulting file.

Click Here to see this example Code

Example of how to Create a SQLite Database

This example explores how to use php to create a simple sqlite database.
$db = new SQLiteDatabase(".\\users.sqlite"); 
              

Example of how to Open a SQLite Database

This example explores how to use php to open a simple sqlite database.
$conn = sqlite_open(".\\users.sqlite"); 
              

Example of how to Create a table in a SQLite Database

This example explores how to use php to open a simple sqlite database.
$conn = sqlite_open(".\\users.sqlite"); 
sqlite_query($conn , 
            "CREATE TABLE myusers " .
            "(id INTEGER PRIMARY KEY," .
				"Name CHAR(255)," . 
				"Password CHAR(255))");

              

Example of how to add data to a table in a SQLite Database

This example explores how to use php to add data to a table in a simple sqlite database.
$conn = sqlite_open(".\\users.sqlite"); 
	sqlite_query($conn,
               "INSERT INTO myusers (" . 
			     "Name," . 
				"Password" .
				") VALUES (" .
				"'JohnDoe1'," . 
				"'MySillyPassword'" . 
				")"); 


              

Example of how to list data in a table in a SQLite Database

This example explores how to use php to list data in a table in a simple sqlite database.
$conn = sqlite_open(".\\users.sqlite"); 
 $result = sqlite_query($conn,"SELECT * FROM myusers"); 
 while ($row = sqlite_fetch_array($result)) { 
     print_r($row); 
     print_r("<BR>\n"); 
 } 

              

Example of how to close a SQLite Database

This example explores how to use php to close a sqlite database.
	unset($conn); 
              
 

@bitdaddys

Highlighted Products
Email Pack

Email Pack
BitDaddys Corp.
$39.95

More Info
Buy Now!

Email conversion and action pack. Get all of our powerful email utilities for one very low price! more ...

outlookFiller64
BitDaddys Corp.
$19.95

More Info
Free Trial
Buy Now!
Import eml and msg Files into 64 bit Outlook more ...

PopTransAct
BitDaddys Corp.
$19.95

More Info
Free Trial
Buy Now!
POP3 Email Transfers and Actions. Extract, Archive Save and Merge Attachments. Archive and forward Messages from any POP3 Account, even gmail! more ...

MSGDETACH
MySQL Data Backup Tool
BitDaddys Corp.
FREE

More Info
Free Download

Automatic Daily MySQL Database backups. Powerful Backup Rotations. more ...

O2X
ODBC2XLS
BitDaddys Corp.
$10.00

More Info
Free Trial
Buy Now!
Convert ODBC to Excel XML or CSV! Offers the user a simple, fast and effective method to extract ODBC Table Data from the local ODBC driver into an application, like Excel, more ...

O2X
ODBC 2 C#
BitDaddys Corp.
$5.00

More Info
Free Trial
Buy Now!
Convert ODBC table information into a c# class and a ready to use Visual Studio 2003 project more ...

EML and MSG converter
BitDaddys Corp.
$16.00

More Info
Free Trial
Buy Now!
Convert eml and msg Files into EML, MSG,MHT more ...

outlook EML and MSG converter
BitDaddys Corp.
$14.00

More Info
Free Trial
Buy Now!
Convert eml and msg Files into EML, MSG,TXT, TNEF, HTML ( requires Outlook ) more ...

MSGDETACH
MSGDETACH
BitDaddys Corp.
$14.00

More Info
Free Trial
Buy Now!
Detach Email Attachments from your Email and Save them wherever you want! Extract your message attachments from Outlook msg files. more ...




About Us | Site Map | Privacy | Contact Us |
©2004-2011 BitDaddys Corp.