Re: [PHP] & PHP

2001-04-09 Thread Brian Clark
Hi osium, @ 4:23:17 PM on 4/9/2001, [EMAIL PROTECTED] wrote: > I dunno if this is of any help, but when I use XML and php on the same page, > what I do to bypass that is just have php echo the XML. > echo ""; ... I think you meant: '; ?> -Brian -- PGP is spok

Re: [PHP] last three characters of a string

2001-04-09 Thread Brian Clark
Hi Joseph, @ 10:48:03 PM on 4/9/2001, Joseph Bannon wrote: > I need to examine the last 3 characters of a string. Is there code > that does that? -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.p

Re: [PHP] Edit crontab to set schedule..

2001-04-09 Thread Brian Clark
ry: [all on one line] /path/to/lynx -dump http://192.168.0.1/try1.php > /full/path/to/output.txt [/all on one line] -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

Re: [PHP] while loop

2001-04-09 Thread Brian Clark
(mysql_error()); > while($row = mysql_fetch_array($resultofrs)) Are you missing the opening curly brace in the actual code? > $IsAva = $row[6]; > } ... -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www

Re: [PHP] while loop

2001-04-09 Thread Brian Clark
responding to the fetched row, or _false if there are no more rows_ >> >> So as soon as there are no more rows, $row = mysql_fetch_array($query) >> evaluates to false and the while exits. >> >> -- >> David Robley| WEBMASTER & Mail List A

Re: [PHP] while loop

2001-04-09 Thread Brian Clark
elID' >> > ORDER BY start_date ASC"; >> > $resultofrs = mysql_query($queryoffers, $connection) or > die(mysql_error()); >> >> > while($row = mysql_fetch_array($resultofrs)) >> >> Are you missing the opening curly brace in the actual code? >> &

Re: [PHP] page counter

2001-04-09 Thread Brian Clark
occon/doc_distribution/count.txt Has to be writable by the user the web server is running as. Typically www or nobody. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTE

Re: [PHP] page counter

2001-04-09 Thread Brian Clark
Bad idea. Maybe not for a simple counter file, but I wouldn't get into the habit of doing that. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

[PHP] Oracle Connection

2001-04-10 Thread Dunaway, Brian
environment with putenv(oracle_home=/something) and putenv(oracle_sid=database)...what can I do? any ideas? Brian D. Running PHP 4 -- 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

Re: [PHP] HELP with (Fatal Error: Call to a member function on a non-object)

2001-04-11 Thread Brian Clark
pl might need to be made global. > 184-$pf_id = get_param("f_id"); > 185-$tpl->set_var("editFileError", ""); > 186- } > Get_param is a function to get the variable "u_id" that would have been sent > back with the page url (e.g.: page.ph

Re: [PHP] array output as a variable?

2001-04-11 Thread Brian Clark
quot;optin","comments","request_type","request_bucket","date"); > > //output the array loop results to a variable > $array_results = foreach ($info_request As $value) { print "$value,"; } > //place the output variable into an SQL

Re: [PHP] array output as a variable?

2001-04-11 Thread Brian Clark
@ 2:39:12 AM on 4/12/01, Brian Clark wrote: ... > @ 2:13:10 AM on 4/12/01, midget2000x wrote: ... >> //declare the array >> $info_request = array (1 => >"firstname","lastname","email","howfound","optin","comments&qu

Re: [PHP] VERY URGENT -- MIRROR FOR PHP.NET ??

2001-04-12 Thread Brian Clark
esn't fly, try the au mirror: http://au.php.net/ Or the Canadian mirror: http://ca.php.net/ -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For addition

Re: [PHP] foreach vs. while(list() = each())

2001-04-12 Thread Brian Clark
ile(), > list() and each(). > That must be a lot faster. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please do not carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECT

Re: [PHP] foreach vs. while(list() = each())

2001-04-12 Thread Brian Clark
@ 3:45:39 AM on 4/12/2001, Brian Clark wrote: ... >> You don't need to reset() the array, You also don't need list() and >> each(), which impose additional overhead. You put the array loop to >> the foreach() implementation, which is in C, instead of >> i

RE: [PHP] Parsing HTML tags

2001-04-13 Thread Brian Paulson
eturn $regs[1]; } } call it like so print(title("home.htm","web/articles")); The only drawback is if there is any < > tags in between the tags it will not get the title, also if the title is on two lines like this This is the title of my page

[PHP] Variable variable names...

2001-06-22 Thread Brian Weisenthal
let say i wanted to see if a variable existed by the name of $myvar2 . how can i make the '2' come from a variable. so i want to say something like $myvar$othervar .(but obviously that wont work) anyone have a clue? i tried using eval but i couldn't get it right -- PHP General Mailing L

[PHP] Also related....(params)

2001-06-22 Thread Brian Weisenthal
I am trying to create a function that will check if a variable exists, if it does leave it alone, if not create it. This is similar to for those who know cold fusion. Anyone know a good way to deal with this in php4? I just started learning php, im sure someone has had to deal with this for some

Re: [PHP] Variable variable names...

2001-06-22 Thread Brian Weisenthal
turns out my subject was right on anyone interested check this page out. http://www.phpbuilder.com/manual/language.variables.variable.php ""Brian Weisenthal"" <[EMAIL PROTECTED]> wrote in message 9h02nm$n7c$[EMAIL PROTECTED]">news:9h02nm$n7c$[EMAIL PROTE

RE: [PHP] Oracle and PHP

2001-06-26 Thread Dunaway, Brian
>I'm a newbie in PHP, what should I do to connect to Oracle Database. >Do I have to install a library to do that? >Please anyone, help. http://www.phpbuilder.com/manual/ref.oracle.php I usually do something similiar to this. (psuedo code follows): // Define Oracle_Home and Oracle_Sid putenv("O

[PHP] APXS -S option in 4.0.6

2001-06-28 Thread Brian Paulson
/sites/home/users/admin/php-4.0.6' make: *** [install-recursive] Error 1 Thank You Brian Paulson Sr. Web Developer [EMAIL PROTECTED] The Pueblo Chieftain www.chieftain.com 1-800-279-6397 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] F

[PHP] Insight into Object Serialization and Loading

2001-06-29 Thread Brian Tanner
just match up whatever variables it can, and then it doesn't worry about the rest? Insight appreciated. -Brian Tanner -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the

Re: [PHP] Numerical refs to assoc array suddenly "undefined offset"??

2001-06-29 Thread Brian Tanner
ch will set $my_array[0] If you want to print out your array elements in order, use: while (list ($key, $val) = each ($my_array)) { echo "$key => $val"; } Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com

RE: [PHP] Function Reqest/Question

2001-07-02 Thread Brian White
blah blah blah... > > // Want to get out of here... > break; >} >?> > >But putting it within while(0), you can simply break; from it... > >There may be better ways... Any other suggestions? - Brian White Step Two Designs Pty Ltd

Re: [PHP] configuring with gd for TTF

2001-07-02 Thread Brian White
Debian Linux "Potato" ) Regs Brian White At 08:50 3/07/2001 +0200, Ray Hilton wrote: >I'm having all sorts of headaches trying to get TTF support in gd to >work. I have compiled from scratch gd 1.8 with ttf support by way of >freetype 2, this compiles fine. Then I compile

RE: [PHP] configuring with gd for TTF

2001-07-03 Thread Brian White
/apxs gd-1.8.4 is actually compiled ( theoretically ) with freetype2.x support, though that shouldn't be making any difference, I would have thought. Freetype is 1.3. Also, whenever I configured and then compiled I always deleted config.cache and ran "make clean" first. Hope this hel

RE: [PHP] Security of PHP code

2001-07-04 Thread Brian White
54 4/07/2001 +0100, Jon Haworth wrote: >Yes, I would have thought this would do it: > >if (strstr($file, "/usr/local/apache/htdocs/") { > show_source($file); >} else { > echo "File must be in /usr/local/apache/htdocs!"; >} -

[PHP] Iterating varibales

2001-07-05 Thread Brian Ricks
I have a site which uses two pages. The first page generates an HTML form with multiple rows which is then POSTed to the second page. Sometimes on the first page I have to create multiple rows of INPUT fields. To allow a dynamic number of INPUT fields (say someone wants to add seven new num

Re: [PHP] Need help with timestamp....

2001-07-05 Thread Brian White
ing correctly... > >the following is how i have the line written atm > >define('SUB_BAR_TITLE', strftime(DATE_FORMAT_LONG, (date ("F d, Y h:i:s >A"; > >no, i did not write this script, which is the reason i dunno what the heck >im doing -- im curious if anyo

Re: [PHP] Re: changing to a different file in browser

2001-07-05 Thread Brian White
last night but have now forgotten how i did it). > >>>>>> > >>>>>> ie (no the following is NOT actual PHPsheesh :) > >>>>>> > >>>>>> If a=1 > >>>>>> go to required_page.php > >>>

RE: [PHP] Re: changing to a different file in browser

2001-07-05 Thread Brian White
t: the die >// if match found then continue >if (!mysql_numrows($result) ) { >die ( "username/password not valid"); >} >else{ >header("Location: adminMenu.php"); >exit; } >?> >******* > >menu.php: >** > >**

Re: [PHP] Global Variables -- why not have them?

2001-07-08 Thread Brian White
ot;SCRIPT_NAME", or one of the CGI parameters. The CGI parameters are arguable, but I pretty much consider SCRIPT_NAME to be a global constant. Brian - Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo

Re: [PHP] stripping white space?

2001-07-09 Thread Brian White
Perl - call the original script directly using the PHP binary and then parse the text output to create munged HTML. ( Horribly inefficient ) * Wait until Apache 2.0 allows you to chain outputs. Regs Brian White At 22:39 9/07/2001 -0700, Kurt Lieber wrote: >Well, you can simply look for

RE: [PHP] stripping white space?

2001-07-10 Thread Brian White
Do You Yahoo!? >Get personalized email addresses from Yahoo! Mail >http://personal.mail.yahoo.com/ > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the

Re: [PHP] using image place holders in a database field?

2001-07-10 Thread Brian White
find much on using place holders in a field - but I >can see it's advantages. > >I hope this all makes sense... > >Regards, > >Matthew Delmarter > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For add

Re: [PHP] What the heck is this

2001-07-10 Thread Brian White
was kinda curious. > >thanks >-Adam > > > >-- >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] What the heck is this

2001-07-10 Thread Brian White
ECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] - Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo.com.au/ Email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To uns

Re: [PHP] .htaccess php_value

2001-07-11 Thread Brian White
then be as complex as you like. Regs Brian At 11:33 11/07/2001 -0700, Aaron Bennett wrote: >Hi There, > I currently use .htaccess files to override the include path, which works >great for me... One of my concerns was the portability of the code, and the >possibility of not havin

RE: [PHP] building a search engine ??

2001-07-12 Thread Brian Paulson
http://www.htdig.org -Original Message- From: Navid A. Yar [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 12, 2001 10:50 AM To: 'scott [gts]'; 'php' Subject: RE: [PHP] building a search engine ?? This sounds interesting. Where can I find htdig? -Original Message- From: scott

Re: [PHP] replacing part of string with values in array

2001-07-12 Thread Brian White
t;-- >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] - Brian White Step Two Designs Pty Ltd - SGML, XML &

Re: [PHP] Strong typing?

2001-07-12 Thread Brian White
) { return (integer)CheckInputAgainstRE( $val, "^-?[0-9]+$" ); } which you could then use as your input protection Would that help? Brian At 23:55 12/07/2001 +, Dr. Evil wrote: >PHP is a great language. It makes it fast and easy to create web >pages. However, one

Re: [PHP] The need for strong typing...

2001-07-12 Thread Brian White
to have redundant constraints to achieve high reliability >and safety. Strong typing is one of those contraints. > >This doesn't mean that PHP should be changed to allow strong typing. >It may mean though that PHP isn't the right language for rigorous >applications like finan

Re: [PHP] explode()

2001-07-16 Thread Brian White
$arr = explode("-",$row[5]); $reqmonth=$arr[1]; Well, it's all on one line. At 16:23 16/07/2001 -0700, Adam Plocher wrote: >$reqmonth = ${}[1]; > >Is there anyway I can get that to work without having to use multiple lines >of code? - B

Re: [PHP] email counter

2001-07-16 Thread Brian White
>"Love your enemies, it will drive them nuts" - Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo.com.au/ Email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscr

Re: [PHP] HTML in XML???

2001-07-18 Thread Brian White
n > > > >-- >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] - Brian White Step Two Designs

Re: [PHP] Hack on Server.

2001-07-19 Thread Brian White
Maybe the hacker got into the httpd.conf and set the auto-prepend setting to a file that contained the message. Brian At 00:34 20/07/2001 +0300, [EMAIL PROTECTED] wrote: >Hi Jean-Francois! >On Thu, 19 Jul 2001, Jean-Francois Jauvin wrote: > > > Hi, my server with php on it has b

Re: [PHP] When did this become the advertising Mailing List

2001-07-24 Thread Brian White
: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] ----- Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo.com.au/ Email:

RE: [PHP] Capitalize Function ??

2001-07-24 Thread Brian Dunworth
cPherson Angus MacGyver Ronald McDonald > Sometimes there are suffixes like "the 3rd", no? Would it be right > to capitalize this? Well, usually that'd be "III". Of course, "John Smith, Iii" would be wrong... - Brian -

[PHP] php-wrapper

2001-07-24 Thread Brian Allen
I am looking for a php wrapper similar to cgiwrap. I have seen pair.net's php-cgiwrap, but where can I download this script or at least another one with the same functionality? Brian Allen -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED

RE: [PHP] Zip Code Locator?

2001-07-25 Thread Brian Dunworth
> Hey, let me know if you figure out what the extra numbers are > for... I might have a use for this at some point. The last two numbers are latitude and longitude of the registered zip code center for the given zip code. --- Brian S. Dunwort

Re: [PHP] Opening another page in code (PROPOSED FAQ)

2001-07-25 Thread Brian White
. > >What have I missed? > >Thanks, >Nelson >-- > >-- >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] -

[PHP] mp3 file read

2001-07-26 Thread Brian Weisenthal
anyone know of any classes or functions or anything to read data from an mp3 file on the server, ie. song length, artist, album...etc. ? thanks brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED

Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-26 Thread Brian White
constructor from class A and output 'I >am the constructor of A.' > >When I tried this script, this did not happen and the Function B() was >called as the constructor of class B, even though the function was in the >base class...can anyone help to clear up this matter? &

Re: [PHP] parser outside of web tree. whats the trick?

2001-07-26 Thread Brian White
treating the #! line as text and passing it out to the browser. You need to figure out what is going on and pick one way to do it. Brian At 22:41 25/07/2001 -0400, Darren Henderson wrote: >If I have php installed as an executable outside the web tree I can't seem >to get php scripts,

Re: [PHP] Query String Name ?

2001-07-26 Thread Brian White
the way >the query string is created? > > >Thanks, >Abe - Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo.com.au/ Email: [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net

Re: [PHP] Newbie Help (CLASS WAR!)

2001-07-29 Thread Brian White
At 03:25 27/07/2001 -0700, CC Zona wrote: >In article <[EMAIL PROTECTED]>, > [EMAIL PROTECTED] (Brian White) wrote: > > > There are times when I would really like to be able to do: > > > > class A > > { > > function DoStuff() > > {

Re: [PHP] Global Variables -> Local Scope

2001-07-29 Thread Brian White
w.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] ----- Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http

Re: [PHP] in_array() with associate array?

2001-07-31 Thread Brian White
, e-mail: [EMAIL PROTECTED] >To contact the list administrators, e-mail: [EMAIL PROTECTED] - Brian White Step Two Designs Pty Ltd - SGML, XML & HTML Consultancy Phone: +612-93197901 Web: http://www.steptwo.com.au/ Email: [EMAIL PROTECTED] -- PHP General Maili

Re: [PHP] Java Jock - 1st line syntax

2001-07-31 Thread Brian White
line break instead of Ctrl-J or Ctrl-M,Ctrl-J. Maybe worth a look Brian At 16:05 31/07/2001 +0100, Greg Fyans wrote: >you got an example you can show us > >-- >Greg Fyans >www.syntonik.co.uk > > > > I recently just started using PHP. I searched this list's archi

RE: [PHP] Re: FAQ

2001-08-01 Thread Brian Dunworth
On Wednesday, August 01, 2001 at 11:53 AM, Clayton Dukes said: > I have a question: > Does anyone know what PHP stands for? > It's not in any of the FAQ's I've looked at. "PHP" is short for "PHP: Hypertext Preprocessor" ...n

Re: [PHP] Re: FAQ

2001-08-02 Thread Brian White
If I am talking to other geeky types I explain the full history of "Personal Home Page" outgrowing it's name to become "PHP: Hypertext Processor" , recursive like "GNU" ete. etc. If I am talking to non geeky types, and they bother to ask, I go with "P

Re: [PHP] Oh and one more thing

2001-08-03 Thread Brian White
SN: [EMAIL PROTECTED] > > > AIM: legokiller666 > > > > > > > > > > > > > -- > > PHP General Mailing List (http://www.php.net/) > > To unsubscribe, e-mail: [EMAIL PROTECTED] > > For additional commands, e-mail: [EMAIL PROTECTED] > &g

RE: [PHP] Linux & PHP Install Problems (was: Oh and one more thing)

2001-08-06 Thread Brian Dunworth
board "burnt" but can no longer be considered "safe". If you attempt to do this again, also remember to be very careful with the pronunciation of the final line of the mantra in step 3... --- Brian S. Dunworth Sr. Software Development Engineer Oracle Database Administrator

RE: [PHP] Session problem

2001-08-08 Thread Brian Dunworth
VARS["count"]; ?> times. You're asking the session to remember a value ( session_register() ), then changing that value ( $count++ ) and not re-registering it, then complaining when the session returns the value you asked it to remember. What if you did: - Bria

[PHP] Using fopen to read a URL - DNS Problem?

2001-08-13 Thread Brian White
t PHP can't resolve names. It is not a problem with the linux box it's running on, given that I ran "ping www.php.net" on that particular box to find the IP address. Can anyone tell me what I need to do to make it work? Regs Brian White - Brian White S

[PHP] Port Scanner

2001-08-20 Thread brian ellis
some code to remove that process? Thank Ye Kindly Brian -- 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]

[PHP] Help with Encoding/Decoding data for payment Gateways

2001-08-20 Thread Brian Tanner
;$i++) { $w=(($x&$l)+($y&$l))^(($x^$y)&$h); $w=($w<<$z)|($w>>(32-$z)); $w=(($w&$l)+$v[$i%$n])^($w&$h); $s[$i&7]+=$w&31; $z=$y&31; $y=$x; $x=$w; } for ($i=0;$i<8;$i++) { $q.=substr('0123456789BCDEFGHJKLMNPQRSTVWXYZ',$s

[PHP] $PATH_INFO strangeness

2001-08-20 Thread Brian Curtis
direction of some good documentation on said subject? TIA. -- Best regards, Brian Curtis -- 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]

[PHP] Unable to use fopen to read a URL - DNS Problem?

2001-08-21 Thread Brian White
-apxs=/usr/local/apache/bin/apxs and I am running PHP 4.0.4pl1 under Debian "Potato" Linux and Apache 1.3 Regs Brian White At 16:28 14/08/2001 +1000, Brian White wrote: >The following code: > >$url = "http://www.php.net/";; >print ( implode( "", f

RE: [PHP] Re: PHP secure

2001-08-24 Thread Brian Tanner
Zend's compiler doesn't really cost that much. If you look at it that way yes. But if you get a developer membership to Zend ($50 a month), you get the encoder as long as you have a membership (min 1 year). So really, you can get the encoder for $600 -Original Message- From: J Sm

[PHP] I beleive I have found a bug.....

2001-08-28 Thread Brian White
eive it should generate A B C D E A B C D E A B C D E A B C D E A B C D E Instead it generates A B C D E If I replace the problem line foreach ( array_keys($data) as $key2 ) with the alternate foreach ( $data as $key2=>$val2 ) then it works fine

Re: [PHP] I beleive I have found a bug.....

2001-08-29 Thread Brian White
idn't read my code closely enough: I said: > > If I replace the problem line > > foreach ( array_keys($data) as $key2 ) > >^^ > > with the alternate > > foreach ( $data as $key2=>$val2 ) At 09:54 29/08/2001 +0200,

RE: [PHP] The future of PHP

2001-08-29 Thread Brian Tanner
Hey, you guys keep coming to Calgary , Alberta, Canada. Stop by Winnipeg, Manitoba, Canada! Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com -Original Message- From: pierre-yves [mailto:[EMAIL PROTECTED]] Sent: August

RE: [PHP] Re: The future of PHP -- accessory libraries

2001-08-29 Thread Brian Tanner
of bandwidth I need to use up to make my money back) Brian Tanner Project Manager Zaam Internet Solutions Toll Free: 1-866-225-2675 [EMAIL PROTECTED] http://www.zaam.com -Original Message- From: Richard Heyes [mailto:[EMAIL PROTECTED]] Sent: August 29, 2001 1:53 PM To: Rasmus Lerdorf Cc

[PHP] Hello

2001-08-31 Thread Brian Elias
by decrease our percent of profits. Just click the link below to set up an appointment with one of my sales representatives today! Brian Elias President Hansons Windows & Siding P. S. This a one time email offer only good for the next 9 day or until we decrease our tax problem.

Re: [PHP] Problem with PHP y Phorummail

2001-09-05 Thread Brian Clark
config` once as root. Then it should work. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the li

Re: [PHP] Links

2001-09-05 Thread Brian Clark
;/imU", $StringToSearch, $matches); > print_r ($matches); > --- End of PHP code --- Another option would be to use Snoopy's fetchlinks(): <http://snoopy.sourceforge.net/> It's not perfect though.. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list

Re: [PHP] Problem with PHP y Phorummail

2001-09-05 Thread Brian Clark
???. Try running updatedb if you're on Linux then run locate again to make sure. Other than that, did you install from source? If you installed from something like a .deb or .rpm you may have to get the source rpm or dev to go along with your binary installation rpm. Make sense? Or no? What OS

Re: [PHP] Passing array names into a function

2001-09-05 Thread Brian Clark
)); $my_var = 'peanuts'; print "Before: " . $my_array[foo][bar]; print "Before: " . $my_var; function data_store($action, &$variable, $value ) { if($action == 'set') return $variable = $value; } data_store('set',$my_array[foo][bar

Re: [PHP] strip ALL HTML tags in a page so only the text

2001-09-05 Thread Brian Clark
way to do this, I mean stripping all teh HTML > tages with PHP. strip_tags() http://www.php.net/manual/ -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For ad

Re: [PHP] Problem with PHP y Phorummail

2001-09-05 Thread Brian Clark
you knew you had the same version listed there, then youmight only need one of those RPMs (say, Client shared libraries).. Sorry I couldn't be of much more help.. -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://w

RE: [PHP] book help - where is O'Reilly's PHP Programming???

2001-09-06 Thread Leone, Brian
x27;t been published. Does anyone know the status of this book? I'm sure it will be the best book on PHP! Thanks, Brian > -Original Message- > From: Nikola Veber [mailto:[EMAIL PROTECTED]] > Sent: Wednesday, September 05, 2001 10:36 AM > To: php forum > Subject: [PHP]

RE: [PHP] Is it possible to detect the Browser type/version in PHP?

2001-09-11 Thread Brian Paulson
Here is something that I use and works good Thank You Brian Paulson Sr. Web Developer The Pueblo Chieftain Online [EMAIL PROTECTED] http://www.chieftain.com > -Original Message- > From: nayco [mailto:[EMAIL PROTECTED]] > Sent: Tuesday, September 11, 2001 9:48 AM > To

[PHP] NEED HELP: select box repeat

2001-09-17 Thread Brian Lee
OK I am trying to write a script that will bring data out of a database into a select box. But what I need it to do is repeat 5 times or more depending on what it brings out. I can only get it to display one select box. Here is what I got so far: Flavors Select "> Please HE

Re: [PHP] Going blind? Plz hlp w/ parse error

2001-09-19 Thread Brian White
> @mysql_free_result($result); > > @mysql_close($connection); > > echo " > > > > etc. > >Thank you! > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EM

[PHP] PHP4 and PHP4 w/ EAPI sharing same libs

2001-09-23 Thread Brian Curtis
hanks. -- Best regards, Brian Curtis -- 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] Feature?

2001-09-25 Thread Brian White
Actually this is a feature of Python. It is VERY useful and I would be ecstatic if it turned up in PHP. Regs Brian White At 11:36 25/09/2001 +0300, Andrey Hristov wrote: > After some days spent in a hospital reading "Programming Perl" and > "Oracle Web Applications&quo

Re: [PHP] 2D array from file

2001-09-26 Thread Brian White
I think this is not working because "\t" is a regular expression and explode only works on strings.. Actually, I have no idea and I feeling very confused right now but maybe try "split" and see how it goes. Brian At 13:37 26/09/2001 -0400, John Frenzel wrote: >I

Re: [PHP] array_multisort

2001-09-26 Thread Brian White
$result by [keycount] which are all >numbers. > >How the umm.. heck do you use that funky array_multisort function? > >Rick > > >-- >PHP General Mailing List (http://www.php.net/) >To unsubscribe, e-mail: [EMAIL PROTECTED] >For additional commands, e-mail: [EMAI

Re: [PHP] newbie - some simple questions

2001-10-02 Thread Brian Clark
<http://www.phpbuilder.org/columns/bill19990831.php3> -Brian -- PGP is spoken here: 0xE4D0C7C8 Please, DO NOT carbon copy me on list replies. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To cont

[PHP] PHP & MySQL

2001-10-02 Thread Brian Lee
. "> that will bring up the set of flavors once i need to be able to bring it up more than once but keep it in the same format and set it to a cookie. Any help would be great. The project is already overdue so I am sort of a hurry.

RE: [PHP] Re: something like alert (javascript)

2001-10-03 Thread Brian Paulson
bSuccess = true; else bSuccess = false; } return bSuccess; } Put form stuff in here Hope this helps Thank You Brian Paulson Sr. Web Developer The Pueblo Chieftain Online [EMAIL PROTECTED] http://www.chieftain.com > -Ori

Re: [PHP] check if file is already in use before fopen

2001-10-04 Thread Brian White
-- Larry Wall in <[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] Database editor

2001-10-05 Thread Brian Paulson
You might also want to try http://sourceforge.net/projects/phpmyadmin That is where you will find the newest version of the program. Thank You Brian Paulson Sr. Web Developer The Pueblo Chieftain Online [EMAIL PROTECTED] http://www.chieftain.com > -Original Message- > From:

Re: [PHP] Is there a brian I can pick?

2004-07-26 Thread Brian Dunning
I'm a Brian, but you can't pick me unless you're a really hot chick. - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Newbie image manipulation question

2004-07-28 Thread Brian Dunning
ty basic stuff. I don't suppose there is an example or tutorial of this process anywhere, geared toward B1FF the n00b? Obviously this has been done a thousand times before... Thanks for any clueing-in, - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Server's clock gone funny, maybe?

2004-07-29 Thread Brian Dunning
I've got a function where I reset an expiration datetime to 3 days in the future, using: update table set expire = NOW()+300 where ... Has always worked great, but today it always sets the field to -00-00 00:00:00. No code was touched. Anyone have a clue? A problem with the ISP's serv

Re: [PHP] Server's clock gone funny, maybe?

2004-07-29 Thread Brian Dunning
On Jul 29, 2004, at 10:18 AM, Jay Blanchard wrote: Have you asked the ISP? No - that's like asking a black hole, unfortunately - I was hoping someone here might spot a problem on my end. - Brian -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Server's clock gone funny, maybe?

2004-07-29 Thread Brian Dunning
On Jul 29, 2004, at 10:45 AM, Jay Blanchard wrote: Please read this now, before you post again... http://catb.org/~esr/faqs/smart-questions.html Thank you for not trying to be a condescending smartass at all. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.ne

Re: [PHP] Conversion of Field Value to Hyperlink

2004-07-29 Thread Brian Dunning
noise is not helpful. Go find a list where everyone already knows everything so you can masturbate all you want. Please flame me back channel, Brian Dunning http://www.briandunning.com/ -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

<    3   4   5   6   7   8   9   10   11   12   >