I see. Well in that case, I withdraw my correction. Thank you for pointing that out to me, as I didn't know that there was an exception for "Dear someone" ;)
I'm gonna play Grammar Nazi for a second. You should always add a comma before someone's name when addressing them. For example "Dear, John" or "Hello, Sarah."
I'm a NetBeans user coming from TextWrangler. While all I really "needed" was syntax highlighting, having the automatic error checking made my development go so much faster. And of course the auto...
You probably have to download the button images and upload them to your server. There's no domain in the image source, so it's assuming the images are in the same directory as your HTML page.
One thing that I think is worth mentioning, and I've seen in some examples here already, is that SQL can and should span multiple lines. From what I've seen, a lot, if not most people tend to write...
As I understand it, if you compile the script, there is little or no guarantee that it will work on their web host. Also, it's very unusual to sell someone a closed source script, and you run the...
Last I checked, session_start() needs to be called before anything is output, or you'll have errors. Basically you should be doing script work before putting any text or HTML on the page. This takes...
Generally you'd want to use sessions instead of cookies for user login. And if reg_form_detail.php is being included, that means your condition is true. So obviously either $_COOKIE['user_id'] is no...
Here's some sample code for a JavaScript powered model window. You can just save this as a file and open it in a browser for an example. There isn't much there, but it should be close to what you're...
You could probably also put the file outside the public_html directory, and use readfile() to get it. That would keep people from accessing it directly, should they guess the url of the file itself.