WeberDev.com PHP and MySQL Code

LOG IN
BEGINNER GUIDES  |  PHP CLASSES  |  CODE SEARCH  |  ARTICLES SEARCH  |  PHP FORUMS  |  PHP MANUAL  |  PHP FUNCTIONS LIST  |  WEB SITE TEMPLATES
Start typing to search for PHP and MySQL Code Snippets and Articles Search
Submit a code Example / Snippet Submit Your Code
Search Engine Optimization Monitor SEO Monitor
Web Site UpTime Monitor UpTime Monitor
WeberDev's Monthly code contest PHP Code Contest
Your Personal Examples List My Favorite Examples
Your Personal Articles List My Favorite Articles
Edit Account Info Update Your Profile
PHP Code Search
Web Development Forums
Learn MySQL Playing Trivia
PHPBB2 Templates
Web Development Index
Web Development Resources
Web Development Content
PHPClasses
PHP Editor
PHP Jobs
Vision.To Design
Ajax Tutorials
PHP Programming Help
PHP/MySQL Programming
Webmaster Resources
Webmaster Forum
XML meta language
website builder
Mobile Dev World

Go Back Add a Comment Send this example to a friend Add this Article to your personal favoritest for easy future access to your favorite Code Examples and Articles. Submit a code example Print this code example.
BACK ADD A COMMENT SEND TO A FRIEND ADD TO MY FAVORITES ADD CODE EXAMPLES PRINT
Title : simple script to send emails via a html-form to different users
Categories : Email, MySQL, PHP, Databases Update Picture
amalesh kempf
Date : Feb 25th 1999
Grade : 3 of 5 (graded 2 times)
Viewed : 11715
File : No file for this code example.
Images : No Images for this code example.
Search : More code by amalesh kempf
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

<?

/******************************************************************************
Description: This is a simple script to send emails via a html-form
                         to different users
Date                : 1999-02-25
Author                : amalesh kempf <amalesh@goatrance.de>


Create this table
The field "what" is for different categories

CREATE TABLE email_notify (
ID int(11) DEFAULT '0' NOT NULL,
What varchar(60) DEFAULT '0' NOT NULL,
Name varchar(60) DEFAULT '0' NOT NULL,
Email varchar(60) DEFAULT '0' NOT NULL,
timestamp varchar(16),
KEY (What),
PRIMARY KEY (ID));

To fill this table you might create an insert form

*******************************************************************************/




// Set this values:
$strHost ="localhost";
$strUser ="root";
$strPassw ="";
$strSender="you@domain.com";



if (!$btnSendEmail)
{
?>

The email will be added automatically with "Hello Name" in the first line of
the emailbody!<br>
<br>

        <form action="send_email.php3" enctype="application/x-www-form-
urlencoded" method="post">
        <table>
                <tr>
                        <td>Subject</td>
                        <td><input name="strSubject" size="40"></td>
                </tr>
                <tr>
                        <td>Body</td>
                        <td><textarea cols="40" name="strBody" rows="8"
wrap="PHYSICAL"><? echo $strBody ?></textarea></td>
                </tr>
                <tr>
                        <td>Category</td>
                        <td>
                                <select name="strWhat">
                                <?php // add you categories here: ?>
                                <option value="party">Party</option>
                                </select>
                        </td>
                </tr>
        </table>
        <input name="btnSendEmail" style="HEIGHT: 24px; WIDTH: 224px"
type="submit" value="Sende email">
        </form>
        
<?php
}


if (isset($btnSendEmail))
{        echo "Send Email<br>";

        // Create connection
        $intConID = mysql_pconnect($strHost,$strUser,$strPassw);

        // Header
        $strHeader = "Return-Path: $strSender\nErrors-To: $strSender\nFrom:
$strSender";
        
        // SQL
        $strSQL = "select name,email from email_notify where lcase(what) =
'$strWhat'";
        $intRes = mysql_query($strSQL,$intConID);

        echo "Send Email $strBody<br>";

        // fetch array        
        while($saRow = mysql_fetch_array($intRes))
        {        $strEmail = $saRow["email"];
                $strName = $saRow["name"];
                $strBodyComplete = "Hello " . $strName[$i] . "!\n\n" . $strBody;
                
                // Email
                mail($strEmail,$strSubject,$strBodyComplete,$strHeader);
                
                // Output
                echo "Send to $strName<br>";
        }
}
?>



email new items in db
Categories : PHP, Email, Databases, MySQL, Beginner Guides
Email a user with out exposing email address
Categories : PHP, Databases, MySQL, Email
bookmarker - PHP, PHPLIB, MySQL WWW based bookmark manager
Categories : MySQL, PHP, MySQL, Complete Programs, Databases
This program allows you to upload an ODBC ressource - i.e. an MS-Access database to a MySQL server.
Categories : Databases, MySQL, Complete Programs, PHP, Databases
Solution to those 'tell-a-friend' type email issues
Categories : PHP, Email, Databases, MySQL
Broadcast HTML Email
Categories : PHP, Email, MySQL, Databases
Displaying records of database in more than one page (paging)
Categories : Databases, MySQL, PHP
A Complete table(ADD,EDIT,VIEW,DELETE) management System PHP,MYSQL, JAVASCRIPT
Categories : PHP, MySQL, Java Script, Databases
Accepts a database & hostname from a user and then HTTP username and password. Uses this to connect to a MySQL database. Produces a form based on the tables it finds there to allow the user to do SELECTs, INSERTs, and DELETEs.
Categories : Databases, PHP, MySQL, Complete Programs
Create and restore backup of MySQL databases
Categories : MySQL, Databases, PHP, PHP Classes, Complete Programs
phpAds, a complete banner and ad management system with detailled tracking and stats.
Categories : MySQL, Complete Programs, Ecommerce, PHP, Databases
A Simple Script that stores encrypted messages in databases
Categories : PHP, Databases, MySQL, Security
Point and Click Interface ala MS Access for creating SQL statements.
Categories : MySQL, Complete Programs, General SQL, PHP, Databases
MySQL Class to ease Database connectivity
Categories : MySQL, PHP Classes, Databases, PHP
Simple db results paging example
Categories : PHP, MySQL, Databases, Form Processing