6 Posted Topics
Have you considered [SimpleMachines](http://www.simplemachines.org/)? SMF is a whole lot more compact than phpBB but just as good when it comes to handling spam. You can use image verification to guard against spammers. Even better - use a Q&A challenge. By and large you should find one of those two measures …
It is not at all clear why you got timeouts involved here. clearTimeout in your code would discard the previously assigned timeout but do nothing whatsoever to disconnect #btn2 from the click handler that was assigned to it. If no then go and click #btn1 you are assigning a whole …
It is not clear to me how you plan to access the user's country name but I assume you have that nailed down. If you do then the next bit involves fetching the currency and current conversion rate for the country in question. Take a look at [Open Exchange Rates](https://openexchangerates.org/). …
Your question is not terribly clear but are you trying to do something like this? $names = $certs['name']; $dates = $certs['date']; $keys = array_keys($names); $out = ''; foreach($keys as $key) { if (!array_key_exists($dates,$key)) continue; $out .= $names[$key].'='.$dates[$key]; } echo $out;
Are you sure that $pass and $dbpass match? Control chars, tabs, spaces etc in one or the other may lead to a mismatch even through you seem to "look" the same?
You do have an error - the opening brace after the animate properties object. bottom: '-900' }, { duration: 1300, easing: 'easeOutBounce' See my [modified fiddle](http://jsfiddle.net/3AXB9/2/) for a version that works. b.t.w - it has been a while now since Google has blocked cross domain embedding. I replaced your www.google.com …
The End.
jresponse