bford21 Posted March 6, 2011 Share Posted March 6, 2011 I've been teaching myself PHP and web design for about 2 years now and I've come along way. I just recently finished my own personal website which hosts multiple PHP projects and tutorials. I've created my own rating system and comment system as well. Before registering my own domain name I thought I mine as well post it here and see what flaws you guys can find cause I'm sure theres a bunch. However I kindly ask that if you do find a flaw please don't cause any damage to the site and just report it here. My Site : http://bkgallery.site90.net/ Proof its mine: http://bkgallery.site90.net/phpfreaks.html Thanks in advance for all the feedback! Link to comment https://forums.phpfreaks.com/topic/229771-personal-portfolio-project/ Share on other sites More sharing options...
Username: Posted March 10, 2011 Share Posted March 10, 2011 That's actually pretty nice I'll look for some bugs now Link to comment https://forums.phpfreaks.com/topic/229771-personal-portfolio-project/#findComment-1185571 Share on other sites More sharing options...
darkfreaks Posted March 14, 2011 Share Posted March 14, 2011 you have alot of injection on your contact page i would suggest using strip_tags also if you rather use the html purifier library you can do like so.. require_once 'htmlpurifier/library/HTMLPurifier.auto.php'; $purifier = new HTMLPurifier(); $example =$purifier->purify($_POST['example']); Link to comment https://forums.phpfreaks.com/topic/229771-personal-portfolio-project/#findComment-1187265 Share on other sites More sharing options...
darkfreaks Posted March 15, 2011 Share Posted March 15, 2011 also you have abit of XSS injection in your comments as well. Link to comment https://forums.phpfreaks.com/topic/229771-personal-portfolio-project/#findComment-1187576 Share on other sites More sharing options...
Recommended Posts