[PHP] Algorithm: Limiting Large Numbers of Pages to 10 visible

2001-12-20 Thread Lara J. Fabans
've got to believe that there's a really slick way of doing this. I've searched the usual places (weberdev.com, devshed.com, zend.com) but there's no really good keywords, and when you search on 'paging" you get too many results to be useful Thanks in advance, Lara ---

Re: [PHP] HTTP_POST_VARS: Data there, but can't get to it

2001-11-10 Thread Lara J. Fabans
to access the HTTP_POST_VARS? Thanks, Lara At 08:36 AM 11/10/2001 -0800, Lara J. Fabans wrote: >My bad for typing it in from memory. I'd retyped it in a few times, so I >thought i had it perfect. Here's the exact code: > >print_r ($HTTP_POSTVARS); // yeilds the a

Re: [PHP] HTTP_POST_VARS: Data there, but can't get to it

2001-11-10 Thread Lara J. Fabans
at_do); // blank . . . for ($x=0;$x<=$row;$x++) { $whatdox = $whatdo[$x]; print $whatdox; // blank . . . //loop start Load Delete Change Category . . . ----- Lara J. Fabans Lodestone Software, Inc [EM

[PHP] HTTP_POST_VARS: Data there, but can't get to it

2001-11-09 Thread Lara J. Fabans
ce all the rest of the postvars are working, and I can see that the data's there in the HTTP_POST_VARSI just can't get to it. (pun not intended) Thanks, Lara - Lara J. Fabans Lodestone Software, Inc [EMAIL PROTECTED] -- PHP General Mailing List (http://www.ph

Re: [PHP] Re: COM

2001-08-22 Thread Lara J. Fabans
original poster wanted to do. MS did join the OMG, and there are supposedly some tools out there, but nothing as easy to use as java2idl. - Lara J. Fabans Lodestone Software, Inc [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [E

Re: [PHP] Having trouble with PHP exec function calling CGI program

2001-08-13 Thread Lara J. Fabans
Hi, Tony, I'm a "middlebie", and I have the same problem. From the archives, I found the following suggestions from Richard Lynch: Does it work perfectly from the command line if you su to "nobody" (or whomever PHP runs as) before you execute it? Is it world executable? Does it access resources

[PHP] Can't run perl script using exec or system

2001-08-12 Thread Lara J. Fabans
d, $output, $error); if($error) { echo "OS Error2 $error"; } - Lara J. Fabans Lodestone Software, Inc [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]

Re: [PHP] PHP scripting

2001-07-25 Thread Lara J. Fabans
to do what? There's tons of sample scripts out there on www.weberdev.com www.zend.com www.devshed.com if you just want to go absorb knowledge Lara - Original Message - From: "Kyle Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, July 25, 2001 9:40 PM Subject: [PHP]

[PHP] How to unsubscribe

2001-07-13 Thread Lara J. Fabans
can. 9) Dig in the dirt under the concrete and there will be a red button. If you push the button, you will unsubscribe yourself from this list. ----- Lara J. Fabans Lodestone Software, Inc [EMAIL PROTECTED]

[PHP] Was: ereg parse error problem Now: RegEx Plea for Help

2001-07-12 Thread Lara J. Fabans
instance instead of the globalizing like it's doing? I'm going to play around with a few more things, but after staring at the code for 4 hours, my brain is fried. Thanks, Lara At 06:59 PM 7/12/2001 -0700, Lara J. Fabans wrote: >- > >$string = "<a href=&quo

[PHP] ereg parse error problem

2001-07-12 Thread Lara J. Fabans
reg ("img src="(.*)"", $string, $regs)) { echo $regs[1]; } else { echo "nope1"; } if (eregi("a href="(.*)"", $string, $regs)) { echo $regs[1]; } else { echo "nope2"; } ?> - Lara J. Fabans Lodestone Software