Tagged Questions
2
votes
1answer
129 views
PHP Sign Up Form - Safe and Secure? [closed]
I just wanted to see how secure this form is, and if there are any potential problems. I tried to add mysqli_real_escape_string to the Prepared statement but it gave me an error.
Also if I enter a ...
1
vote
1answer
81 views
Help! user registration problem!
My idea:
I have a database of users, each user has an autoincremented id number field, and various other fields with their details on. I would like to store within the user record a field with an ...
1
vote
3answers
89 views
SSL Certificate. For which pages?
Which pages need to use a SSL Certificate for a online shop? This site is available just for registered users and the Payment is made using a third party provider.
I suppose: login, signup, change ...
0
votes
1answer
35 views
Email address as login username - PHP & Zend_Auth?
I read an article showing how to do it to login using username.
Instead, I just want people to sign up and login using their email address since it is easier for them to remember.
Hope you guys can ...
0
votes
3answers
102 views
Is necessary to send confirmation email after registration? [closed]
I'm building a service that allo users to signup, do you think is necessary to send confirmation email after sign up? Why?
0
votes
5answers
75 views
MySQL Syntax error. Can't solve it
I wanna insert 0 to some db table's fields but can't get it work. The piece of code from my signup php script looks like that.
...
if (isset($type))
{
if($type==1)
{
$region=$data['region'];
...
0
votes
2answers
69 views
Single signin/signup system for whole project
I have an idea and going to realise it
My idea is simple: my website will be for examination purposes. There will be a page for questions and answers like stackoverflow ...
0
votes
3answers
80 views
PHP login system help needed
I am new to PHP and I don't have much experience in PHP.I am trying to develop a login system based on a layered structure.I thought about various methods to implement that system but I think it's ...
0
votes
1answer
226 views
Connecting android app to server?
I am working on an android app that basically brings functionality of a website to android. What I would like to do is to allow a user to sign up to the website from the android app. I think I should ...
0
votes
2answers
56 views
PHP : Sign Up Form animating
i want to do a sign up form who will instantly check the answer and if the form is valid, a green circle appear beside the form.
0
votes
4answers
121 views
Is it possible to create sign up possibility without PHP?
Is it possible to create a sign up possibility without PHP?
i made an application with jQuery, and i want the users to be able to sign up and
save there input. Is this possible without PHP?
Thanks in ...
0
votes
1answer
72 views
Daily digest emails on user registration
I'm writing a simple signup page for a small-scale text message service - sort of like a mailing list, but instead of emails, I send text messages to those who sign up with me.
Since its small-scale ...
0
votes
5answers
344 views
Creating a PHP Sign up form
I am creating a sign up script, in the past i have used a sign up form with a processing file that inserts it and then that leads to the members area. Is there a way on pressing the submit button i ...
0
votes
1answer
400 views
How to implement reCaptcha into my signup form?
I am kinda new to php and i am trying to figure out how to make recaptcha work on my site.
Here is an excerpt from my "signup.php" and i have corresponding signup.html which acts like a template... ...
0
votes
1answer
1k views
PHP signup email-validate login script/class
I am looking for a decent PHP script or class library to handle user sign-up/register, email-validation and login for a website. I've written this sorta thing before, but I'd rather use something more ...
-2
votes
0answers
46 views
How many Sign Up Pages are recommended? [closed]
Designing a Site -- as i've seen
-- Twitter
Has about 3 places where they've given the sign up form, but 2/3 are dummy signup froms where you are redirected to the 3ed form(which i presume is the ...
-3
votes
0answers
29 views
Using same form for signin and sign up
How do I create a sign in and signup using the same form ?
I mean I want the same form but when user clicks on sign in he logs in but when he clicks sign up the username is registered and the user is ...
-4
votes
2answers
65 views
Need help improving PHP & MySQL security [closed]
Possible Duplicate:
MySQL Syntax error. Can't solve it
Can anyone improve this code so it is secure and uses prepared statements?
$sql= "INSERT INTO users
(level,fname, mname, lname, ...
-4
votes
4answers
120 views
Autoincrement problem [closed]
Possible Duplicate:
Problem with autoincrememnted “id” column
My db table looks like this pic. http://prntscr.com/22z1n Recently i've created delete.php page. it works properly ...