vins Posted January 11, 2011 Share Posted January 11, 2011 Can any one suggest me some ideas or tips how can i improve my design... www.bharatdesi.com any suggestions ... Thanks for your time... Quote Link to comment Share on other sites More sharing options...
Anti-Moronic Posted January 11, 2011 Share Posted January 11, 2011 I assume you mean the site design and layout (as oppose to the application design). I actually think it's alright. It could be better, but it reads like a newspaper which I imagine is the intention. I think the ads down the right only cause confusion and are a little overwhelming. I don't know. It covers a LOT on this single page. Take a look at yahoo and how they have elegantly separated information. I would consider using some ajax. Again, try to follow yahoo a little. Quote Link to comment Share on other sites More sharing options...
thewooleymammoth Posted January 11, 2011 Share Posted January 11, 2011 youve been hacked by cross site scripting, use better filters on user input. strip_tags($input); to start Its always best to get some regex on those things and limit the amount of text that can be entered. Quote Link to comment Share on other sites More sharing options...
Adam Posted January 17, 2011 Share Posted January 17, 2011 youve been hacked by cross site scripting, use better filters on user input. strip_tags($input); to start Its always best to get some regex on those things and limit the amount of text that can be entered. I wouldn't recommend strip_tags for preventing XSS, but htmlentities as you output the string. Also regex isn't needed for checking string length (unless you wish to go by whole words), strlen should be fine. As for your website vins, it's too much. I have no idea what the site is for or what all those links are. You're just chucking a load of information on a page and expecting people to get it. Quote Link to comment Share on other sites More sharing options...
marcelus23 Posted January 21, 2011 Share Posted January 21, 2011 Nice , i like minimal design , good work!! diseño webdiseño graficodiseño web malagadiseño web madriddiseño grafico malagadiseño grafico madriddiseño de paginas webdiseño de logotiposdiseño web en malagagraphic designcreanetweb design :::::::: MARCUS LORE ::::::::: Quote Link to comment Share on other sites More sharing options...
thewooleymammoth Posted January 22, 2011 Share Posted January 22, 2011 youve been hacked by cross site scripting, use better filters on user input. strip_tags($input); to start Its always best to get some regex on those things and limit the amount of text that can be entered. I wouldn't recommend strip_tags for preventing XSS, but htmlentities as you output the string. Also regex isn't needed for checking string length (unless you wish to go by whole words), strlen should be fine. As for your website vins, it's too much. I have no idea what the site is for or what all those links are. You're just chucking a load of information on a page and expecting people to get it. depends on what you want to filter, if you want users to be able to input special characters than htmlspeicalentities() is good, but if its something like $_GET['desired_page'], then i would just use striptags. Also strlen is good for length but i ment use regex to validate the type of input, ex: numbers, name, email address. not just to limit length Quote Link to comment Share on other sites More sharing options...
crmamx Posted February 10, 2011 Share Posted February 10, 2011 I am certainly not an expert. Actually looking at critic comments to improve my web page. But as I look at your home page I have no idea what it is about. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.