Comment by Ryan on window.onbeforeunload performing query
hmmm...I might consider that if it is the ONLY option just because the query that is made takes ~.006 seconds to perform. seewhosoutthere.com/conversation?leave=true
View ArticleComment by Ryan on jquery .load dynamic image
I edited my main post to show a page where the problem exists. I threw back up the captcha so you all can see.
View ArticleComment by Ryan on jquery .load dynamic image
Hey nick, the problem with that is then it adds another captcha image(with the same security) to the same div so there are multiple images.
View ArticleComment by Ryan on jquery .change not working in IE7
thank you sir. That worked perfectly. You are a scholar and a gentleman.
View ArticleComment by Ryan on RSS feed not auto-updating in Google Reader
my site is all hand coded and not an actual blog built on wordpress or any other cms. Would this type of this still be valid?
View ArticleComment by Ryan on Is it possible to set an Expiration Date/Time for a table...
@EmilVikström I'm making a site with cart functionality. Users can add items to the cart if they are not signed in. This info is stored in a temp table that will then be migrated to a specific users...
View ArticleComment by Ryan on is there any symbol that cannot be submitted into a hash...
okay great! I can't understand why websites would limit special characters/lengths of passwords then if a simple hash allows more or less any password to be database acceptable.
View ArticleAnswer by Ryan for What should I be aware of to make my web application secure?
my functions of choice for cleaning up user input are$input = mysql_real_escape_string($input);<br>$input = trim($input);<br>$input = strip_tags($input);<br>$input =...
View ArticleRegex matching optional section
So I have two possible strings here for example./user/nameand /user/name?redirect=1I'm trying to figure out the proper regex to match either with a result of: Array ([0] => /user/name [1] => user...
View Articlewindow.onbeforeunload performing query
I'm trying to perform a post query when the user leaves the page. The code I'm working with is<script type="text/javascript">window.onbeforeunload = function(){ var used = $('#identifier').val();...
View ArticleRSS feed not auto-updating in Google Reader
I've coded up an RSS feed for my site using basic PHPfeed hereWhen I first subscribe to the feed in Google Reader for testing purposed all the latest items load. But when I enter a new entry, google...
View Article$_Files[] array only showing first file uploaded [duplicate]
I currently have a form with a single file upload input on it.the original form input I've tried <input type="file" name="userFile[]" /> and <input type="file" name="userFile1" />I also...
View Articleis there any symbol that cannot be submitted into a hash function?
Is there any character or symbol that cannot/should not be submitted into any hash function that would throw an error or break the function or anything like it? No characters submitted into a hash need...
View Articlehtaccess WordPress and separate directory without filenames
On a site I'm working on the main portion of the site is wordpress powered.I've added another directory completely separate from the wordpress site called employees and I'm having a little issue with...
View Articlejquery .change not working in IE7
I have a form with id="new"I have several text inputs and a select drop down on it.I'm using the jquery code:$('form#new').change(function(){ alert('this code works');});But the .change() function does...
View Article