Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I wrote my code to try store the user id into a database but its not working well... can you tell me what could be the problem?

<?php 

require('mysql.php');

$user_id = $facebook->getUser();
$checkUserID = mysql_query("SELECT fbUserID from submissions WHERE fbUserID = '$user_id'");

if ($user) {
  try {
    $user_profile = $facebook->api('/me');
  } catch (FacebookApiException $e) {
    error_log($e);
    $user = null;
  }
}

if (mysql_num_rows($checkUserId) > 0) { 
    $tartalom = include("noaccess.php");
}
else {
    $tartalom = include("form.php");
}

?>

This is my main, this search from the table in the database if the user id is already exist or not, if yes then it will navigate you to noaccess.php if the visitor is not in the database then its allow him to fill the form (form.php).

<form method="post" action="submit-form.php">
    <strong>Userame</strong>
    <label>
      <input name="username" type="text" class="textbox" id="username">
    </label>
    <strong>Password</strong>
    <label>
      <input name="password" type="password" class="textbox" id="password">
    </label>
    <strong>Email</strong>
    <label>
      <input name="email" type="text" class="textbox" id="email">
    </label>
    <label>
      <input name="register" type="submit" class="submit" id="register" value="Register">
    </label>
</form>

I did the submit form also

<?php 

$user_id = $facebook->getUser();
$username=$_POST['username'];
$password=$_POST['password'];
$email=$_POST['email'];

//Database connection
require("mysql.php");

//mysql query to insert value to database
$query=mysql_query("INSERT INTO registration (`id`, `username`, `email`, `password`) VALUES ('', '$username', '$email', '$password')");
$query2=mysql_query("INSERT INTO submissions (`id`, `fbUserID`) VALUES ('', '$user_id')");

//if value inserted successyully disply success message
if($query && $query2)
{

    echo '<div style="color:#008000; font-weight:bold;">Registred successfully..!!</div>';
}else
{
//error message
    echo '<div style="color:#c24f00; font-weight:bold;">unable to registred !!</div>';
}

?>

Please help me what could be the problem?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.