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 : PHPRecommend v1.0 - "Recommend this page to a friend" script written in PHP. Easy to install
Categories : PHP, URLs, Complete Programs, Email, Site Planning Click here to Update Your Picture
A. Gianotto
Date : Mar 28th 2000
Grade : 3 of 5 (graded 5 times)
Viewed : 13588
File : No file for this code example.
Images : No Images for this code example.
Search : More code by A. Gianotto
Action : Grade This Code Example
Tools : My Examples List

  Submit your own code examples 
 

<?
/************* PHPRecommend v 1.0 ***************/
/************************************************/
/* written by A. Gianotto - 3/28/2000 */
/* To find out if this is the latest version */
/* of this script, email snipe@snipe.net, or */
/* visit http://www.snipe.net */
/************************************************/
/************************************************/
/* PHPRecommend may be used freely for private */
/* or commercial use. All I ask is that you */
/* don't include it in any collections without */
/* my permission. */
/************************************************/
/************************************************/
/* DESCRIPTION: */
/* PHP "Recommend this page to a friend" script */
/* */
/************************************************/
/************************************************/
/* INSTALLATION: */
/* There is no readme or install file with */
/* script, because it's so easy to install, */
/* you just have to follow the comments in the */
/* first part of the code */
/************************************************/
/************************************************/

// make this point to your header file. rename the file
// and the path to point to the correct file on your server
// If you do not use a header or footer file, simply replace
// the header and footer includes with the proper HTML code
// for your site

include("/usr/home/your-site.com/html/inc/header.inc");

// Enter the website administrators email address here
$adminaddress = "you@your-site.com";

// Enter the company name or site name here
$sitename = "your-site.com";

// Enter the address of your website here
$siteaddress ="http://www.your-site.com";


// Unless you are changing the verbage of the printed message,
// there are no further configurations that need to be done
// past this point, except editing the path to your footer includes

// If you do not use header and footer files, you can just replace
// the include calls with your HTML, but be sure to close the PHP tags
// before and after the HTML, so you don't get parse errors.


IF ($action==""):
?>

<H3>Recommend this page to a friend!</H3>
<?
$referer = getenv("HTTP_REFERER");
print "<B>$referer</B><BR><BR>";

?>
To send the URL of this page and a brief message to a friend who might like it, just fill out the
form below.
<BR>
<BR><B>NOTE:</B> We only request your name and email address so that the person you
are recommending the page to knows that you wanted them to see it, and that it is not junk
mail.
<BR><FORM METHOD=POST ACTION="<? echo "$PHP_SELF"; ?>">

<TABLE BORDER="0" CELLSPACING="3" CELLPADDING="3">
<TR>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif" SIZE="-
1">Your Name:</FONT></TD>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif"
SIZE="3"><INPUT TYPE="text" NAME="yname"></FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif" SIZE="-
1">Your Email:</FONT></TD>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif"
SIZE="3"><INPUT TYPE="text" NAME="yemail"></FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif" SIZE="-
1">Friend's Name:</FONT></TD>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif"
SIZE="3"><INPUT TYPE="text" NAME="fname"></FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif" SIZE="-
1">Friend's Email:</FONT></TD>
        <TD VALIGN="TOP"><FONT FACE="Arial, Helvetica, Verdana, Sans Serif"
SIZE="3"><INPUT TYPE="text" NAME="femail"></FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP" COLSPAN="2"><FONT FACE="Arial, Helvetica, Verdana, Sans
Serif" SIZE="-1">Additional Comments:</FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP" COLSPAN="2"><FONT FACE="Arial, Helvetica, Verdana, Sans
Serif" SIZE="3"><TEXTAREA NAME="comments" ROWS="3"
COLS="30"></TEXTAREA></FONT></TD>
</TR>
<TR>
        <TD VALIGN="TOP" COLSPAN="2"><FONT FACE="Arial, Helvetica, Verdana, Sans
Serif" SIZE="3"><INPUT TYPE="hidden" NAME="url" VALUE="<? echo "$referer"; ?>"><INPUT
TYPE="submit" NAME="action" VALUE="Send"></FONT></TD>
</TR>
</TABLE>

</FORM>
        <BR>
        <BR>
        <BR>
        <BR>
        <BR>


<? include("/usr/home/your-site.com/html/inc/footer.inc");
exit;
ELSEIF ($action="Send"):
mail("$femail","$yname went to $sitename and recommended you check this out","$yname
stopped by $sitename and thought you would find the following URL of interest:

URL: $url

Additional Comments:
------------------------------------
$comments
------------------------------------

Thank you!

$sitename
$adminaddress
$siteaddress","FROM:$yemail");
?>
<H3>Thank you!</H3>
Your recommendation has been sent!
        <BR>
        <BR>
        <FONT SIZE="3"><B><A HREF="<? echo "$url"; ?>">GO BACK</A></B></FONT>
        <BR>
        <BR>
<?
ENDIF;
include("/usr/home/your-site.com/html/inc/footer.inc"); ?>

// end of script

*********************************************
Making it work on your page:
Just put a link to phprecommend.php3 (or whatever you name the above file), and the script
does the rest!




PHPLinkRot v1.0 - program which allows users to report broken links on your website just by clicking a button. Works well on custom 404 pages
Categories : PHP, Complete Programs, Debugging, URLs, Site Planning
phpEasyMail: An easy way to send data from HTML-forms via EMail.
Categories : Email, HTML and PHP, Complete Programs, PHP
AITSH Mail
Categories : Complete Programs, Email, PHP
An email validation script that actually checks against the recipient's mail server.
Categories : Email, Complete Programs, PHP, Network, Debugging
phpHoo2 (Xhoo using php3/MySQL) is a Yahoo-like link directory. Much like the Open Directory Project (dmoz.org).
Categories : PHP, Complete Programs, Directories, MySQL, URLs
PHP port of Matt Wrights FormMail.pl WWW form to e-mail gateway.
Categories : Email, Complete Programs, Environment Variables, PHP
A PHP based webmail at : http://www.horde.org/imp
Categories : Email, IMAP, PHP, Complete Programs
phpRecommend v1.2 - UPDATED - recommend this page to a friend script - VERY easy install - now with data logging to text file
Categories : Complete Programs, PHP, Link to Article, URLs, Misc
This script allows people to add their favorite quotes to your website. This could easily be modified to be a guestbook script or comment page script.
Categories : PHP, Complete Programs, HTML and PHP, Misc
Protect your mailto: email addresses from bots - pure PHP
Categories : PHP, Email, Security
Complete NotePad application for Websites (Like Yahoo Notepad)
Categories : PHP, Web Applications, Filesystem, Java Script, Complete Programs
phpFreeChat
Categories : PHP, AJAX, Complete Programs
A database abstraction layer for the PHP 3.0 ODBC module. It supports persistent connections, fetching rows into arrays, prepare/execute (variable binding) and has a new and improved error interface.
Categories : Databases, PHP, Complete Programs
Solution to those 'tell-a-friend' type email issues
Categories : PHP, Email, Databases, MySQL
Contents Page - a script to build contents pages.
Categories : Complete Programs, PHP, Utilities, Filesystem
 Nor Aishah Hamid wrote :421
I found this code is really useful for my PHP`s 
knowledge.. As before this I`ve try to understand the 
codes from other resources...
But this code example make me easy to understand the 
coding and my program is perfectly finish..