RE: [PHP] FDF quit work for Acrobat 6

2003-11-13 Thread Roedel, Mark
I don't see any substantial differences between your snippet and the one we're using. (In fact, the only real difference in output is that I've got an additional \n following the Root 1 0 R.) Our system has continued working with Acrobat 6, although we've noticed the newer reader has a tendency

RE: [PHP] can pdf forms be used to submit data into db?

2003-08-28 Thread Roedel, Mark
Guess I'm a little late to this party, but... If you're still looking for help with tying a PDF form to a database, drop me a note. I've got some code I developed for our online admissions application that I can probably be talked into sharing. -- Mark Roedel Web Programmer / Analyst

RE: [PHP] open source content management systems?

2003-07-29 Thread Roedel, Mark
When we were doing our search, we were pretty impressed with Typo3 (http://typo3.com/) from a features-and-interface standpoint. It died here because of lack of contract-able commercial support, but if that's not a factor in your process I'd say it's worth looking at. (We wound up selecting

RE: [PHP] HELP!!!!!!!!!!!!!!!!!!!!!!!!!!!! can someone tell me whats wrong here? (newbie)

2003-07-10 Thread Roedel, Mark
You're missing at least one closing brace (}) -- the one that belongs with the else if ($login==check) { ten or so lines up from the bottom. --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau

RE: [PHP] w32api functions?

2003-06-12 Thread Roedel, Mark
Removed? $PHPDIR/ext/w32api still seems to exist in the 4.3.2 I just installed. Did you compile your own, or download a prebuilt binary? --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at himself, for he shall never cease LeTourneau University | to

RE: [PHP] delete query doesnt work

2003-02-07 Thread Roedel, Mark
First two things I'd check: (1) Make sure the user you're connecting as has permission to delete rows, and (2) Make sure that your $delete variable has the value you were expecting. --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at himself, for he

RE: [PHP] while loop- will this work?

2003-01-30 Thread Roedel, Mark
-Original Message- From: SpyProductions Support Team [mailto:[EMAIL PROTECTED]] Sent: Thursday, January 30, 2003 11:57 AM To: [EMAIL PROTECTED] Subject: [PHP] while loop- will this work? Should this work? Nope...because the value returned by mysql_query() isn't the number

RE: [PHP] PHP 4.2.3, Apache 2.0.40, gettext(), and web don't work

2002-12-09 Thread Roedel, Mark
Are you *sure* your Apache module and commandline interpreter were both compiled with the same set of options? Does a phpinfo() call to the Apache module indicate that gettext is enabled there? --- Mark Roedel | Blessed is he who has learned to laugh Systems Programmer| at

RE: [PHP] Problem: Only 1 fsockopen() connection for apache at a time.

2002-12-03 Thread Roedel, Mark
-Original Message- From: William Bailey [mailto:[EMAIL PROTECTED]] Sent: Tuesday, December 03, 2002 6:04 AM To: [EMAIL PROTECTED] Subject: [PHP] Problem: Only 1 fsockopen() connection for apache at a time. I have a script that uses fsockopen() to connect to a remote

RE: [PHP] Exiting from an include or required file

2002-08-21 Thread Roedel, Mark
Seems like the easy way, at least in this case, would be to make the second part of your File A an else to your if. ?php if (empty($_POST['search_criteria'])) { echo You must provide search criteria; } else { echo You provided search criteria; } --- Mark Roedel

RE: [PHP] PHP and Windows Active Directory...

2002-08-21 Thread Roedel, Mark
-Original Message- From: Glenn Sieb [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 21, 2002 11:30 AM To: [EMAIL PROTECTED] Subject: [PHP] PHP and Windows Active Directory... I know that *ahem* theoretically Active Directory uses LDAP... has anyone had any luck getting PHP

RE: [PHP] upgrade 4.1.2 to 4.2.2 (passing vars problem with 4.2.2)

2002-07-22 Thread Roedel, Mark A.
You *did* read the notice that came up at the end of your 'configure' run, right? (Specifically the part that said *** NOTE *** The default for register_globals is now off. If your application relies on register_globals being ON, you should explicitly set it to on in your php.ini file. Note