Re: Beta Testers wanted - 50 creds per issue.
Not sure how I would integrate this. And what happens if the user needs to enter a name with an apostrophe, like "O'Hara" or "O'Leary"?
Here's what I once used on one of my sites:
Code:
$var = str_replace("'", "’", "$_POST[var]");
This way the apostrophe doesn't cause any problem to any part of your code anymore.
I've also just seen this in another thread, which is probably more efficient:
Code:
$value = str_replace("'","´",$value); //this line is to prevent SQL injection
Okay, here I go.
=> I shouldn't be able to go to the login page while I'm logged in.
=>
http://www.freecrm.x10hosting.com/crmevents/searchevents.php
After adding an event and searching for all events, I get my event, BUT: "Records 1 to 0 of 1".
Also, at the bottom it says who created it and who edited it. "Edited 1970-01-01 00:00:00 by ." should be replaced by "Never" or something similar when it hasn't been edited.
You also get this at the top: "Type:Other: Look", which is a bit too cluttered in my opinion (at least add the missing space).
=>
http://www.freecrm.x10hosting.com/crmopps/insertopp.php /
http://www.freecrm.x10hosting.com/crmopps/updateopp.php
You can set values over 100% to opportunities, as long as it has 3 digits or less. You can fix that with an if($var > 100) { $var = 100; }. I'm also able to enter a negative percentage (-50 for example), which is most likely not relevant. For this one you can either use the same technique with "< 0" or strip all dashes from the entry.
=>
http://www.freecrm.x10hosting.com/crmreports/oppsbyuser.php Searching for opportunities.
"Records Found: 1. Ordered by: OPTITLE ASC." Shouldn't that be replaced with a more human sentence?
=> The "enquiries:" in your footer should have a capitalized E.
I believe I've tested a bit of everything by now. Won't be as complete as real use, but hopefully you get to fix some more issues.
==> As a general note, I believe your website relies too much on opening new windows. It really gets annoying when you get a fistful of new windows opened while navigating a single site. A good example would be to replace your Question Mark tooltips using JavaScript instead of linking to the forum. You could even just set an anchor <a> around the question mark image and place the text inside the title attribute; but JS is more convenient as it can last until the user takes their mouse away from the image.
P.S. I'm sometimes concerned about sounding harsh while reviewing websites; just note that I describe everything in a very straight way, just as I see it, and of course it's always just my opinion
And you know what, I don't need credits anymore, so no need to give me any; it was my pleasure to (maybe) help you ^^