im doing a project for my class and im getting this error
so im suppose to be able to type in a phone number and a message. Its suppose to be taken from the forum and be put into the database into a table with columns/message/phone number
here is the forum
<?php
//Add message and phone number to the "messages" table ...
$con = mysql_connect("localhost","rrwolff0_dennis","pres2028"); //Connection string //drmerry_Project6 is the user then project6 is the password
if (!$con)
{
die('Could not connect: ' . mysql_error());
}
mysql_select_db("rrwolff0_wolffman", $con); //drmerry_php is the database
$sql="INSERT INTO Project6 VALUES ('".$_POST[textmessage]."','".$_POST[phonenumber]."');" ;
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
echo "Record Added";
//line 3 and line 8 have to be customized to your settings
//
?>
//******************************************************************************************
//This section will send an the text message to everyone in the Members table
$fromemail = "rrwolff0316@email.campbell.edu" ;
$message = $_POST[textmessage] ;
$sql="SELECT Email FROM members";
mysql_query($sql,$con);
$result = mysql_query($sql);
//echo "Message Sent To:<br/>";
while ($row = mysql_fetch_assoc($result))
{ // while will look through all members of the database
//echo $row['Email']."<br/>";
//echo "From Email:".$fromemail."<br/>";
mail($row['Email'], "New Text Message", $message, "From: ". $fromemail );
}
//******************************************************************************************
//This section will add an entry to an RSS feed
$rss = simplexml_load_file('text.xml');
$item= $rss->channel->addChild('item');
$item->addChild('title', date("m/d/Y")."-".date("g:i a") );
$item->addChild('description', $_POST[textmessage]."-".$_POST[phonenumber]);
file_put_contents('text.xml', $rss->asXML());
Im getting the error message when i type in my number and message
Warning: mysql_connect() [function.mysql-connect]: Access denied for user 'rrwolff0_dennis'@'localhost' (using password: YES) in /home/rrwolff0/public_html/Campbell/ITS200/Projects/Project6/Project6.php on line 3
Could not connect: Access denied for user 'rrwolff0_dennis'@'localhost' (using password: YES)
can any1 help me please?
This post was edited by El_Mariaci on Dec 9 2012 01:00pm