Actual Results
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP filter_input() and filter_has_var() weirdness (bug?)
- Subject: PHP filter_input() and filter_has_var() weirdness (bug?)
- Replies: 1
- Views: 192
Posted: July 23rd, 2009, 1:04 am
As a quick addendum, this doesn't appear to affect INPUT_GET when using filter_input(), as the code in my project that relies on it has never given me trouble. It only seems to affect INPUT_POST.
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: PHP filter_input() and filter_has_var() weirdness (bug?)
- Subject: PHP filter_input() and filter_has_var() weirdness (bug?)
- Replies: 1
- Views: 192
Posted: July 22nd, 2009, 11:41 pm
Hello all, While messing around with a log in system for my website, I came across a very strange problem with the filter_input() function in PHP. When first submitting a form, it doesn't acknowledge that a particular value is set in $_POST. In other words, filter_input() returns NULL. Naturally, th...
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: May 2nd, 2008, 9:44 am
Thanks, Bogey! 
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: April 30th, 2008, 3:29 pm
Excellent!
I've had a few other people try it and it's working for them too. So, it looks like the problem has definitely been solved.
Thanks again!
Thanks again!
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: April 30th, 2008, 3:06 pm
Well, I'm officially a moron.
That appears to have done the trick. I've refreshed multiple pages about 10-15 times each and it appears to be rendering properly now. Can anyone else confirm this?
Thanks for your help, jameson.
Thanks for your help, jameson.
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: April 30th, 2008, 2:33 pm
Hmm, that's possible. I'll give it a try.
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: April 30th, 2008, 1:58 pm
It looks like that div is shifting down because it's clearing the left navigation there. Do you have "clear:left;" anywhere in your CSS that might be causing it? First of all, thank you for your reply. :) I do have a "clear: left;" in one of my form styles but that's only used o...
- Carl
- Forum: Website Design Forum
- Topic: Firefox shifting div downward
- Subject: Firefox shifting div downward
- Replies: 10
- Views: 504
- Subject: Firefox shifting div downward
Posted: April 30th, 2008, 12:51 pm
Ok, this is driving me crazy. For some reason, one of my divs keeps getting shifted downward on my page. This error never occurs on my local test server but seems to happen relatively consistently on my remote server. I can only get it to occur in Firefox. Internet Explorer and Opera appear to be un...
- Carl
- Forum: Website Design Forum
- Topic: Issue with DIVs in IE6/IE7
- Subject: Issue with DIVs in IE6/IE7
- Replies: 1
- Views: 535
- Subject: Issue with DIVs in IE6/IE7
Posted: May 31st, 2007, 12:09 am
Wow, I'm an idiot. I completely fixed number 1. I thought I had tried adding float: left to #content before but I guess I hadn't. That fixed it. 
- Carl
- Forum: Website Design Forum
- Topic: Issue with DIVs in IE6/IE7
- Subject: Issue with DIVs in IE6/IE7
- Replies: 1
- Views: 535
- Subject: Issue with DIVs in IE6/IE7
Posted: May 30th, 2007, 11:25 pm
Edit: Nevermind. I managed to fix all of these problems. :oops: Removed links. I've been searching the Internet for the past few days trying to find an answer to a few problems I've been having. I've also done extensive experimentation on my own and nothing seems to solve these problems. But, I'm ge...
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: Problem with embedded SQL in C (ECPG)
- Subject: Problem with embedded SQL in C (ECPG)
- Replies: 0
- Views: 218
Posted: October 21st, 2005, 10:47 am
Hello, I've been having a serious problem with embedded SQL in C using ECPG. I need to perform a SELECT and FETCH using a cursor. Everything has been working fine except for one major thing: string pattern matching. In my WHERE clause I need a statement like this: [code]SELECT somevalue FROM mydb WH...
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: Help With making DLL in vc++
- Subject: Help With making DLL in vc++
- Replies: 15
- Views: 2115
- Subject: Help With making DLL in vc++
Posted: August 17th, 2005, 3:13 pm
i purposly removed the mxsck.dll from the folder so u could build a new one. Okay... what is that supposed to mean? Nevermind. updated code and i removed the "C" still doesn't work I said to remove extern "C" . You only removed "C." Please try to follow directions... I'm afraid I have no idea what'...
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: Help With making DLL in vc++
- Subject: Help With making DLL in vc++
- Replies: 15
- Views: 2115
- Subject: Help With making DLL in vc++
Posted: August 17th, 2005, 1:58 pm
First of all, you didn't copy your compiled DLL into your VB project folder. Second, your DLL is incorrectly named in all of your function definitions. Your DLL is called "mxsck.dll" but in your function definitions you call it "MXSock.dll" and "MXSck.dll." Those aren't the same thing. You may also ...
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: Help With making DLL in vc++
- Subject: Help With making DLL in vc++
- Replies: 15
- Views: 2115
- Subject: Help With making DLL in vc++
Posted: August 17th, 2005, 6:17 am
There isn't a boolean data type in C. BOOL is a type defintion in the Windows API and is actually an integer type. The standard convention is as follows:
Since your return type in VB doesn't match the return type of the actual function, V...
typedef int BOOL; #define TRUE 1 #define FALSE 0
- Carl
- Forum: Programming / Scripting / Coding Forum
- Topic: Help With making DLL in vc++
- Subject: Help With making DLL in vc++
- Replies: 15
- Views: 2115
- Subject: Help With making DLL in vc++
Posted: August 12th, 2005, 1:49 pm
First of all, I'm not going to write the DLL for you. You won't learn anything that way and I don't have the time to take on another project at the moment. If getting the DLL to work in VB is too much work, then I suggest you find a language other than VB to write your program in. C code translates ...

