Click here to Skip to main content
15,905,004 members
Home / Discussions / Linux, Apache, MySQL, PHP
   

Linux, Apache, MySQL, PHP

 
Questionplease help.. Pin
badboyz8911-Apr-09 7:37
badboyz8911-Apr-09 7:37 
AnswerRe: please help.. Pin
CARPETBURNER12-Apr-09 0:04
CARPETBURNER12-Apr-09 0:04 
QuestionPython on Tiobe and "Python wins Linux New Media Award for Best Open Source Programming Language" Pin
gdans9-Apr-09 9:50
gdans9-Apr-09 9:50 
AnswerRe: Python on Tiobe and "Python wins Linux New Media Award for Best Open Source Programming Language" Pin
Kevin McFarlane10-Apr-09 1:52
Kevin McFarlane10-Apr-09 1:52 
Question[Message Deleted] Pin
Malayil alex7-Apr-09 13:17
Malayil alex7-Apr-09 13:17 
AnswerRe: Playing an audio file in php Pin
Marc Firth7-Apr-09 21:44
Marc Firth7-Apr-09 21:44 
Questionmultiple email receivers.. Pin
Aljaz1117-Apr-09 2:32
Aljaz1117-Apr-09 2:32 
AnswerRe: multiple email receivers.. Pin
Marc Firth7-Apr-09 3:25
Marc Firth7-Apr-09 3:25 
use BCC variable in your headers

FROM PHP.net manual[^]:
<?php
// multiple recipients
$to = 'aidan@example.com' . ', '; // note the comma
$to .= 'wez@example.com';

// subject
$subject = 'Birthday Reminders for August';

// message
$message = '
<html>
<head>
<title>Birthday Reminders for August</title>
</head>
<body>
<p>Here are the birthdays upcoming in August!</p>
<table>
<tr>
<th>Person</th><th>Day</th><th>Month</th><th>Year</th>
</tr>
<tr>
<td>Joe</td><td>3rd</td><td>August</td><td>1970</td>
</tr>
<tr>
<td>Sally</td><td>17th</td><td>August</td><td>1973</td>
</tr>
</table>
</body>
</html>
';

// To send HTML mail, the Content-type header must be set
$headers = 'MIME-Version: 1.0' . "\r\n";
$headers .= 'Content-type: text/html; charset=iso-8859-1' . "\r\n";

// Additional headers
$headers .= 'To: Mary <mary@example.com>, Kelly <kelly@example.com>' . "\r\n";
$headers .= 'From: Birthday Reminder <birthday@example.com>' . "\r\n";
$headers .= 'Cc: birthdayarchive@example.com' . "\r\n";
$headers .= 'Bcc: birthdaycheck@example.com' . "\r\n";

// Mail it
mail($to, $subject, $message, $headers);
?>


AnswerRe: multiple email receivers.. Pin
Marc Firth7-Apr-09 3:26
Marc Firth7-Apr-09 3:26 
QuestionPHP Exams Pin
Marc Firth6-Apr-09 23:27
Marc Firth6-Apr-09 23:27 
AnswerRe: PHP Exams Pin
Gindi Bar Yahav18-Apr-09 20:27
Gindi Bar Yahav18-Apr-09 20:27 
AnswerRe: PHP Exams Pin
nickmaroulis1-May-09 19:58
nickmaroulis1-May-09 19:58 
QuestionUpload audio and video files and play that files Pin
Malayil alex6-Apr-09 22:03
Malayil alex6-Apr-09 22:03 
AnswerRe: Upload audio and video files and play that files Pin
Marc Firth6-Apr-09 23:13
Marc Firth6-Apr-09 23:13 
GeneralRe: Upload audio and video files and play that files Pin
Malayil alex7-Apr-09 7:23
Malayil alex7-Apr-09 7:23 
GeneralRe: Upload audio and video files and play that files Pin
Marc Firth7-Apr-09 22:01
Marc Firth7-Apr-09 22:01 
QuestionProblems while accessing PHP website hosted on IIS 5.1 over LAN [modified] Pin
Pratik Vasant Shah5-Apr-09 18:40
Pratik Vasant Shah5-Apr-09 18:40 
AnswerRe: Problems while accessing PHP website hosted on IIS 5.1 over LAN Pin
Marc Firth6-Apr-09 5:59
Marc Firth6-Apr-09 5:59 
Questionadd a code to button on click/submit Pin
omlac2-Apr-09 21:09
omlac2-Apr-09 21:09 
AnswerRe: add a code to button on click/submit Pin
Luc Pattyn3-Apr-09 3:17
sitebuilderLuc Pattyn3-Apr-09 3:17 
GeneralRe: add a code to button on click/submit Pin
Right Handed Monkey7-Apr-09 1:59
Right Handed Monkey7-Apr-09 1:59 
AnswerRe: add a code to button on click/submit Pin
Marc Firth6-Apr-09 21:42
Marc Firth6-Apr-09 21:42 
QuestionForm submition Pin
fabrice.leal2-Apr-09 10:51
fabrice.leal2-Apr-09 10:51 
QuestionIronPython Resources Pin
Davy Mitchell2-Apr-09 10:22
Davy Mitchell2-Apr-09 10:22 
AnswerRe: IronPython Resources Pin
Distind12-Oct-09 10:18
Distind12-Oct-09 10:18 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.