Followyourbliss
MIS
<?php
$user = "followyo_New";
$pass = "New";
$user_name = $_POST['user_Name'];
$user_email = $_POST['user_Email'];
echo ($user_name);
echo ($user_email);
$conn = mysql_connect( "localhost", $user, $pass);
$rs_db = mysql_select_db("followyo_mysql_db",$conn);
$sql = "insert into php_game_play(player_Name, player_Email) values('$user_name','$user_email')";
$rs = mysql_query($sql, $conn);
?>
I have seen many posts regarding this issue (I searched, FAQ & online manuals) Yet no one has posted if the suggestions offered work for them.
All I'm trying to do is update a table based on user input. Why doesn't this work? It should be straight forward. I have tried every combination of ' or " and [ or ( Capital letters and lower case - I don't get it.
Thank you in advance for your time.
$user = "followyo_New";
$pass = "New";
$user_name = $_POST['user_Name'];
$user_email = $_POST['user_Email'];
echo ($user_name);
echo ($user_email);
$conn = mysql_connect( "localhost", $user, $pass);
$rs_db = mysql_select_db("followyo_mysql_db",$conn);
$sql = "insert into php_game_play(player_Name, player_Email) values('$user_name','$user_email')";
$rs = mysql_query($sql, $conn);
?>
I have seen many posts regarding this issue (I searched, FAQ & online manuals) Yet no one has posted if the suggestions offered work for them.
All I'm trying to do is update a table based on user input. Why doesn't this work? It should be straight forward. I have tried every combination of ' or " and [ or ( Capital letters and lower case - I don't get it.
Thank you in advance for your time.