/extremedating/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/extremedating/trunk

« back to all changes in this revision

Viewing changes to adduser.php

  • Committer: Daniel Johansson
  • Date: 2013-04-13 16:56:02 UTC
  • mfrom: (22.1.2 extremedating)
  • Revision ID: maila@danieljohansson.nu-20130413165602-atceww4nwd23jro0
Fixed gegos errors

Show diffs side-by-side

added added

removed removed

Lines of Context:
26
26
    '{$_POST['firstName']}',
27
27
    '{$_POST['surName']}',
28
28
    '{$_POST['eMail']}',
29
 
    '{$_POST['city']},
 
29
    '{$_POST['city']}',
30
30
    '1'
31
31
    );";
32
32
  } else {
45
45
    '{$_POST['firstName']}',
46
46
    '{$_POST['surName']}',
47
47
    '{$_POST['eMail']}',
48
 
    '{$_POST['city']}
 
48
    '{$_POST['city']}'
49
49
    );";
50
50
  }
51
51
  $db->exec($query);
52
 
  echo "<body> <h1> New user added! </h1> </body>"
 
52
  echo "<body> <h1> New user added! </h1> </body>";
53
53
  sleep(.5);
54
54
} else {
55
55