Sazzad's Profile
Reputation: 38
Excellent
- Group:
- Members
- Active Posts:
- 601 (0.31 per day)
- Joined:
- 21-February 07
- Profile Views:
- 12,167
- Last Active:
May 18 2012 02:50 PM- Currently:
- Offline
My Information
- Member Title:
- Expert
- Age:
- 23 years old
- Birthday:
- August 14, 1988
- Gender:
-
Male
- Location:
- New York, New York
- Interests:
- Design Engineering, Business, Sports
Contact Information
- E-mail:
- Private
- AIM:
-
IamShipon1988
- Website URL:
-
http://www.sazzad.me
- Skype:
-
IamShipon1988
Users Experience
- Experience:
- Advanced
- Area of Expertise:
- Designer/Coder
Latest Visitors
-
serialpreneur 
08 Nov 2011 - 03:26 -
oakleaves 
28 Oct 2011 - 10:05 -
asek 
14 Sep 2011 - 13:25 -
JackLUFC 
04 Sep 2011 - 13:48 -
kingy da killa 
22 Aug 2011 - 10:44
Topics I've Started
-
Adobe Fireworks CS6
30 April 2012 - 11:11 PM
Hey guys,
I haven't been active in a long while and that's mainly because of work. So we all know that CS6 is coming out very soon. Are you excited about it? I personally use Adobe Fireworks and I know the Fireworks team has been quiet about the CS6 features. I wanted to make this post to let you see some of the features that are new and have been updated for Adobe Fireworks CS6.
You can view the features here: http://launch.fwpolice.com/
So which features are you looking forward to?
Ben if this violates any forum rules, feel free to delete this thread. -
Personal Site Re-Design
25 October 2011 - 03:34 PM
It's been 2 years since I last changed my personal web-site's design. So I thought it was about time for me to renovate. In the end I ended up changing the entire structure, the look and the feel of the site as well. Instead of having multiple page site, I made it into a single page scroll design. My last design (sazzadhossain.org) was mainly focused on the design aspect and was too crowded. Therefore on this design I was going for something simple and also have a little touch of engineering (which I have a degree in) feel.
So before I started coding the design, I thought it would be best to get some feedback. I am not 100% sure if the portfolio/my work section will be as it is in the design (might end up making that the format for the blog).
If you click on the link you can see the coded preview of the design (I decided to link to it than waste loading time for you).
http://portfolio.saz...n.org/newworld/
You can also like this on Forrst: http://forrst.com/posts/New_World-Tmt -
Post your Forrst and Dribble Links
17 October 2011 - 11:08 PM
I'm not sure if there is a post like this already (and I did search before posting but I am bad at finding things), but I thought why not share your FORRST and DRIBBLE links here. As a designer we use these two sites to gain feedback and also as a form of advertisement of our work.
Forrst: http://forrst.me/iamshipon1988
Dribble: Don't have one. Care to share an invite? -
mysql_insert_id()
08 August 2011 - 04:27 AM
Hey all, mind helping me out with this little issue I'm having? It's a registration system. For some odd reason, it processes the submitted data but also outputs the error below. I have been coding for two days straight so my brain is no longer functioning well enough to debug this myself. You can view the project here: http://amuz.us/beta/register
Here's the error
Warning: mysql_insert_id() [function.mysql-insert-id]: Access denied for user 'username'@'localhost' (using password: NO) in /home/hiphop/public_html/beta/modules/mod_register.php on line 46 Warning: mysql_insert_id() [function.mysql-insert-id]: A link to the server could not be established in /home/username/public_html/beta/modules/mod_register.php on line 46 Sorry, but there is a problem with our scripts! UPDATE members SET highest_rank=4769 WHERE id= LIMIT 1
In cpanel the username structure for mysql is username_dbusername
My code
<?php define( "DOC_TITLE", "register" ); define( "DOC_ADS", false ); if ( $_SERVER['REQUEST_METHOD'] == "POST" ) { if ( empty( $_POST['username'] ) ) $error = "Please fill in your desired username!"; else if ( !preg_match( "#^[A-Za-z0-9 _'.-]+$#", $_POST["username"] ) ) $error = "You may only use the following characters in your username: <em>A-Z a-z 0-9 _ <space> ' . -</em>"; else if ( empty( $_POST['email'] ) ) $error = "Please fill in your e-mail address!"; else if ( empty( $_POST['password'] ) ) $error = "Please fill in your desired password!"; else if ( $_POST["password"] != $_POST["vpassword"] ) $error = "The passwords you supplied did not match!"; else if ( $_POST["email"] != $_POST["vemail"] ) $error = "The e-mail addresses you supplied did not match!"; if ( !isset( $error ) ) { $db->query( "SELECT * FROM members WHERE username='".$db->escape( trim(stripslashes($_POST["username"])) )."' LIMIT 1" ); if ( $db->countRows() > 0 ) $error = "Sorry, but that username is taken!"; else { $db->query( "SELECT * FROM members WHERE email='".$db->escape( strtolower(trim(stripslashes($_POST["email"]))) )."' LIMIT 1" ); if ( $db->countRows() > 0 ) $error = "The e-mail address you provided is already in use!"; } } if ( isset( $error ) ) $message = "<strong>Error</strong>: ".$error; else { $username = trim(stripslashes($_POST["username"])); $password = stripslashes($_POST["password"]); $email = strtolower(trim(stripslashes($_POST["email"]))); $username = preg_replace("/\s{2,}/", ' ', $username); $db->query( "INSERT INTO members ( username, password, email, ". "joined, last_updated ) VALUES ( '". $db->escape( $username )."', '".md5($password)."', '". $db->escape( $email )."', UNIX_TIMESTAMP(), UNIX_TIMESTAMP() )" ); $insert_id = mysql_insert_id(); $db->query( "SELECT * FROM members" ); $rank = $db->countRows(); $db->query( "UPDATE members SET highest_rank=".$rank." WHERE id=".$insert_id." LIMIT 1" ); $db->query( "UPDATE sessions SET member_id=".$insert_id.", admin='0' WHERE id='". session_id()."' LIMIT 1" ); $ref = htmlentities( stripslashes( $_POST["ref"] ) ); $ref = empty( $ref )? "/" : $ref; ?>
Full code for registration page: http://pastesite.com/25255/amuzus
If you are interested in looking at the database connect file, it is here: http://pastesite.com/25254/amuzus -
WDF glitch?
04 August 2011 - 05:14 AM
I frequently visit WDF so I was very curious when I saw the layout really messy on my ubuntu partition. I attached a screenshot of what I'm seeing all the time. I was wondering if anyone is also experiencing the same issue with Ubuntu and this forum? (I am using the latest ubuntu release)
Help




Find My Content
Display name history
Comments
Sazzad has no profile comments yet. Why not say hello?