Is it better to save images uploaded by users into a MySQL database or to the filesystem? I figure its easier to manage the files if they are in the database, however the database will...
You probably need to attach an event listener to the <enter> key that fires the showLoader and submitForm functions. For some reason the enter key may not fire it without it. Although, I have no...
You probably need to create a function that encapsulates the showloader() and validate() function. Then onsubmit of the form, you call your new function, which then runs the validate function. once...
I 'm looking to add a Friends section to my website, right now I have built the user sign up / management myself and it works great. Now I want my users to be able to make friends with...
Is there anyway to validate if an email address is still active for a user? I send a monthly newsletter but always receive 1600+ "Invalid Mail Delivery" emails because their email address...
I noticed since we launched this new design that most people avoid that big banner. Its makes sense to reposition it in a better place. The sidebar might work but I dont want it to over take the...
I was wondering what strategies you guys implement for user authentication in your web applications. I understand how to authenticate a user via login but once they are logged in, how do...
I have a page that opens a new window with the (window.open) method call. When the user leaves the original page and opens a new one and selects to open the previously opened window, how do...
I figured it out. I just set a session variable to true to show the confirmation field and then just remove it once the confirmation message is displayed.
I have a standard form on my webpage and when a user submits the data I use header("Location: /page.php"); to send them back to the edit form. I use the header method to avoid the back...
thank you guys for your help. i actually was able to move the data from the orders table to the customers table. It took me a while but i figured it out.