Joined
Last Seen
0 Reputation Points
0% Quality Score
- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
0 Endorsements
Ranked #72.8K
2 Posted Topics
I wanyt to create a progress bar for my website in which a user can skip registration steps and fill them afterwards. Like supposeuser has to compulsorily foll step 1 & 2 of the reg process but can skip the 3rd and do it later. On his dashboard after he …
Use the database design suggested by 'arday' And also create a table called 'al_profile' [CODE]<?php require once'auth.php'; $con = mysql_connect("db_host", "db_user", "db_pwd"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("name_of_db", $con); $result = mysql_query("SELECT * FROM al_profile WHERE member_id='".$_SESSION['SESS_AL_ID'] ."'"); while($row = mysql_fetch_array($result)) { echo "Live in: …
The End.