Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #4K
~5K People Reached
Favorite Forums

13 Posted Topics

Member Avatar for Persi
Member Avatar for Persi
0
4K
Member Avatar for Aser Gado

I have all passwords stored in my database in md5 form. when people log in it always says Email or Password wrong, well thats the error i added when something's wrong, I am pretty sure the email and password are right. here is my login code: [CODE] $emailin=$_POST['emailin']; $passwordin= md5($_POST['passwordin']); …

Member Avatar for Member #120589
0
151
Member Avatar for subrata_ushasi

lets say this is your form: [CODE] <form action="insert.php" method="post"> <select name="country"> <option></option> <option>Angola</option> <option>Andorra</option> <option>etc</option> </select> username: <input type="text" name="username" /> age: <input type="text" name="age" /> <input type="submit" /> </form> [/CODE] [CODE] $sql="INSERT INTO tablename (country, username, password) VALUES ('$_POST[country]','$_POST[username]','$_POST[password]')"; [/CODE]

Member Avatar for subrata_ushasi
0
146
Member Avatar for Aser Gado

After successfully creating a registering system I can't use the login system I've created, it always gives the error message I've set "Wrong Email or Password" although the values are right! The code for validating the login process: [CODE] <?php $con = mysql_connect("***","*****","****"); mysql_select_db("*****", $con); $emailin=$_POST['emailin']; $passwordin=$_POST['password']; $emailin = stripslashes($emailin); …

Member Avatar for Aser Gado
0
92
Member Avatar for Aser Gado

Hello, how's everyone? I have created a page with a form for registration and and another php to process the registration and create the rows in the database, but the processor comes with errors. here is the PHP file: [CODE]<?php include 'dbconnect.php'; mysql_query("INSERT INTO users (firstname, lastname, email, password) VALUES …

Member Avatar for Aser Gado
0
138
Member Avatar for Aser Gado

I am creating a visitor messages system on a member's profile, here is my code so far.. I am using it as an include in the profile page, here is the error I get: [CODE]Error: You have an error in your SQL syntax; check the manual that corresponds to your …

Member Avatar for Member #120589
0
115
Member Avatar for Aser Gado

Hello again :D Now that I have my member's profile, how can I let other members post comments/messages on his profile? Thanks,

Member Avatar for stefh
0
112
Member Avatar for Aser Gado

Hey there, Now I have my member Logged in, now After he logs in he is taken to his profile, now I want to Show his Full name and Email... knowing that I already created a database and everything... here is the code im talking about: [CODE] $result = mysql_query("SELECT …

Member Avatar for Aser Gado
0
285
Member Avatar for Aser Gado

After successfully creating a Registration/Signin/user profile... now I am assigning a profile picture for a user ... I have a question... Everytime I hit upload it doesnt upload I added an "echo' to say if no file is chosen "Please Select a file", it shows this even when I select …

Member Avatar for Aser Gado
0
133
Member Avatar for Aser Gado

Okay so I set up a registration form and everything goes well when registering but when I go and check in MySQL database the row is created but only the id field is filled not the First Name, Second Name, Email and Password. Here's the .PHP for processing the registration …

Member Avatar for pzuurveen
0
116
Member Avatar for Aser Gado
Member Avatar for Daniel Liwonde
0
199
Member Avatar for Aser Gado

Okay, I am working on a facebook for my school, and I need help creating the signup/login/profile pages... Connecting to the database and stuff.. if someone could help me here or on MSN? [email snipped] Thanks, Really looking forward to it!

Member Avatar for 84hd0ns
0
98
Member Avatar for Aser Gado

Hello everyone, I would like to know how to create a PHP file to create the following database: Database name: "dbUsers." [CODE]Name Type Addition id int(10) Primary Key, AUTO_INCREMENT username varchar(16) Unique password char(16) email varchar(25)[/CODE] Thanks :)

Member Avatar for luweegee
0
115

The End.