[PHP] fwrite fopen problem

2006-08-16 Thread Jeremy Schreckhise
stumped. Jeremy Schreckhise, M.B.A.

RE: [PHP] if statement with or comparison (newbie)

2006-09-08 Thread Jeremy Privett
Well, it could be this, too: switch( $_REQUEST['id'] ) { case "white": echo "Right color."; break; case "black": echo "Right color."; break; default: e

Re: [PHP] Array sort question

2006-02-28 Thread Jeremy Privett
ere's no one here willing to help new people more than throwing them "RTFM" responses. -- Jeremy Privett Director of Product Development Zend Certified Engineer Completely Unique [EMAIL PROTECTED] Phone: 303.415.2592 Fax: 303.415.2597 Web: www.completelyunique

Re: [PHP] Array sort question

2006-02-28 Thread Jeremy Privett
It usually just pisses them off. Also, links to other functions to help out like http://www.php.net/usort or http://www.php.net/array_multisort would've helped out more, as well. -- Jeremy Privett Director of Product Development Zend Certified Engineer Completely Unique [EMAIL PROTECTED] Ph

Re: [PHP] Array sort question

2006-02-28 Thread Jeremy Privett
Saline Erik wrote: Sometimes I just need a point in the right direction. So RTFM is not so bad. Erik If you say so. In that case, jblanchard, I apologize for my outburst. -- Jeremy Privett Director of Product Development Zend Certified Engineer Completely Unique [EMAIL PROTECTED] Phone

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
Why couldn't you use your login (weberdev). I.E. when a user creates an account you also push this data onto the phpBB2 db. Find where phpBB is creating a user, analyze the encryption method use, modify your login to create both entries. Jeremy Schreckhise -Original Message-

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
Wasn't trying to steal anyone's thunder. Created the response, went to work, then sent it later. Your response adequate and complete. Sorry to intrude. Jeremy Schreckhise, M.B.A. -Original Message- From: John Nichel [mailto:[EMAIL PROTECTED] Sent: Thursday, April 20, 20

RE: [PHP] PHP Script to open phpBB2 accounts

2006-04-20 Thread Jeremy Schreckhise
#x27;t the programs, nor the vars I'm just using this as an example) phpBB_create.php?user=webdevuser&pass=webdevuserpass Of course you would do this programmatically with variables from your webdev form. Jeremy Schreckhise, M.B.A. -Original Message- From: Weber Sites

RE: [PHP] how to keep spaces in parameters in URL?

2006-04-24 Thread Jeremy Schreckhise
Try print("Foo Bar"); Jeremy Schreckhise, M.B.A. Hello, == Foo Bar"; ?> == Then the URL showed up at the bottom border of the browser has 'name=foo'. What should I do to have 'name=foo bar' in the URL? I tried htmlspecialchars but did not see an

RE: [PHP] Bug madness

2006-04-27 Thread Jeremy Schreckhise
Have you tried? error_reporting(E_ALL^E_NOTICE); Jeremy Schreckhise, M.B.A. -Original Message- From: Dave Goodchild [mailto:[EMAIL PROTECTED] Sent: Thursday, April 27, 2006 10:37 AM To: php-general@lists.php.net Subject: [PHP] Bug madness Hi all, I have been mashing my head

[PHP] Beta3 of PHPEditIni now available

2006-05-20 Thread Jeremy O'Connor
The latest version of PHPEditIni is now available (Beta3). If fixes a bug in Linux/*nix. Use this script to edit your PHP.INI files in a browser based GUI. Visit http://phpeditini.net . -- The PHP EditIni Project [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe,

[PHP] New release of phpEditIni Ver 1.0 Beta4 is now available

2006-06-03 Thread Jeremy O'Connor
New release of phpEditIni Ver 1.0 Beta4 is now available at http://phpeditini.net .. Now handles Windows and Linux/*nix line ends correctly. Use phpEditIni to edit your PHP.INI files in a browser. -- [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: h

[PHP] Math Question

2004-02-11 Thread Jeremy Schroeder
Hey group Is there a function that when you divide 2 numbers you drop the remainder and are left with the whole number. -- Blake -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Math Question

2004-02-11 Thread Jeremy Schroeder
Thanks for all the help, floor() was the correct choice for this problem . -Blake Vincent Jansen wrote: Hi Richard I agree But you always want to round down ;) Blake> Is there a function that when you divide 2 numbers you drop the Blake> remainder and are left with the whole number. Still

[PHP] A dumb question

2004-02-11 Thread Jeremy Schroeder
Hey Group I am starting to write class and objects and came across some syntax that I dont understand. What does the ampersand do in the bottom example code, they both work. $n1 = $num1 -> function(); $n1 = & $num1 -> function(); -Blake -- PHP General Mailing List (http://www.php.net/) To unsu

Re: [PHP] A dumb question

2004-02-12 Thread Jeremy Schroeder
Sorry for the mistake. I check the email I sent and I only sent it to the group, I changed the subject an removed all the of the message. Blake David T-G wrote: Jeremy -- You have started a new thread by taking an existing message and replying to it while merely changing the Subject: line

[PHP] PEAR Sequences

2004-04-05 Thread Jeremy Clifton
e id for the item_master table, and then turn off AUTO_INCREMENT on the table? In experimenting, this appears to be the case, but since I'm going to updating a production application, but I want to be absolutely sure this isn't going to cause any unforseen problems before I do this.

[PHP] webcam redirection/tunnel question

2004-04-08 Thread Jeremy Davis
could use php to display the video stream from the NOC so only one feed to the webcam is necessary? Thanks in advance Jeremy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP 5 abstract method and class type hints of extending classes

2004-10-25 Thread Jeremy Weir
The quesion is: how would one make an abstract method that can be compatible with all extending classes that define the method using different class type hints? The php block below is how I thought it should work, but will give this error at parse time: Fatal error: Declaration of DisplayObject

[PHP] Re: PHP 5 abstract method and class type hints of extending classes

2004-10-26 Thread Jeremy Weir
"Greg Beaver" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jeremy Weir wrote: >> The quesion is: how would one make an abstract method that can be >> compatible with all extending classes that define the method using >> different class typ

[PHP] how to convert char into number

2005-05-27 Thread Jeremy Reynolds
What function do I use to convert an ASCII character into it's equivalent number? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] how to convert char into number

2005-05-27 Thread Jeremy Reynolds
What function do I use to convert an ASCII character into it's equivalent number? -- Sorry, I think my spam filters got any responses. If you replied, could you please resend it to me? -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] rawurldecode problems

2005-05-27 Thread Jeremy Reynolds
I'm using the rawurldecode() function to try and polish up some data I get from a parameter I use the function below and this is what it does. It's as-if it only unencodes the last part. Anybody have ideas on what I'm doing wrong? $order = rawurldecode($HTTP_GET_VARS["x"]); 3445%252520Cau

[PHP] rawurldecode problems

2005-05-27 Thread Jeremy Reynolds
I'm using the rawurldecode() function to try and polish up some data I get from a parameter I use the function below and this is what it does. It's as-if it only unencodes the last part. Anybody have ideas on what I'm doing wrong? $order = rawurldecode($HTTP_GET_VARS["x"]); 3445%252520Cau

[PHP] rawurldecode problems

2005-05-27 Thread Jeremy Reynolds
I'm using the rawurldecode() function to try and polish up some data I get from a parameter I use the function below and this is what it does. It's as-if it only unencodes the last part. Anybody have ideas on what I'm doing wrong? $order = rawurldecode($HTTP_GET_VARS["x"]); 3445%252520Cau

[PHP] PDF permissions problems

2005-10-31 Thread Jeremy Reynolds
Web Directory out into a director that's not within the Web Directory? I'm using absolute paths. Jeremy

[PHP] ODBC question

2005-12-28 Thread Jeremy Schreckhise
with windows installed on drive c:   Thanks in advance,     Jeremy Schreckhise -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Comparing of string

2006-01-03 Thread Jeremy Privett
have with this: if ( strcmp( trim($SollKombination), trim($formCheck) ) ) { echo "test"; } --- Jeremy Privett [ http://www.jeremyprivett.com ] Founder - Lead Software Developer - Hosting Systems Administrator Omega Vortex (http://www.omegavortex.com) -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Comparing of string

2006-01-04 Thread Jeremy Privett
janbro wrote: Hi Jeremy, I tried if ( strcmp( trim($SollKombination), trim($formCheck) ) ) same negativ result. For some reason both strings are not considered to be the same. They have the same length, are of the same type and have the same content. Why PHP doesn't recognize them as b

[PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
I'm looking for a method that would be able to extract the user's true document root (e.g. /home/jeremy/public_html/) so that I can use it for some filesystem scanning functions. I'm trying to avoid hard-coding supported document roots in favor of being able to dynamically

Re: [PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
2006 07:14:22 AM -0600 From: Jeremy Privett <[EMAIL PROTECTED]> To: php-general@lists.php.net Subject: [PHP] Getting The Document Root I'm looking for a method that would be able to extract the user's true document root (e.g. /home/jeremy/public_html/) so that I can use it for som

Re: [PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
George Pitcher wrote: Jeremy, I think I lead you down the wrong path with my last reply. have a look at $_ENV['ORIG_PATH_TRANSLATED'] which, on my WinXP Apache2 box gives 'C:\Apache\Apache2\htdocs\testsite\phpinfo.php'. Is that what you are after? George I think my

Re: [PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
John Nichel wrote: $_SERVER['DOCUMENT_ROOT'] http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server Nope. I've already tried that... $_SERVER['DOCUMENT_ROOT'] contains /home/jeremy/public_html/test/ ... All I want is to the public_html

Re: [PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
John Nichel wrote: Jeremy Privett wrote: John Nichel wrote: $_SERVER['DOCUMENT_ROOT'] http://www.php.net/manual/en/reserved.variables.php#reserved.variables.server Nope. I've already tried that... $_SERVER['DOCUMENT_ROOT'] contains /home/jeremy/public_html/t

RE: [PHP] How do I output error messages

2006-02-21 Thread Jeremy Schreckhise
You could pass your error message back and forth as an HTTP post. $myMsg = $_GET['error_msg']; if(isset($myMsg)) { //print my message } else { //process as normal } -Original Message- From: Paul Goepfert [mailto:[EMAIL PROTECTED] Sent: Tuesday, February 21, 2006 12:53 PM

Re: [PHP] NT5 Sub Domains

2001-01-27 Thread jeremy brand
apache.org. :) > I can hear the answer already... apache.com > > > > >From: Rasmus Lerdorf <[EMAIL PROTECTED]> > >To: "[ rswfire ]" <[EMAIL PROTECTED]> > >CC: <[EMAIL PROTECTED]> > >Subject: Re: [PHP] NT5 Sub Domains > >Date: Sat, 27 Jan 2001 13:31:34 -0800 (PST) > > > >Why don't you just in

Re: [PHP] Editor

2001-01-29 Thread jeremy brand
http://www.vim.org/ :set nu Jeremy Brand :: Sr. Software Engineer :: 408-245-9058 :: [EMAIL PROTECTED] http://www.JeremyBrand.com/Jeremy/Brand/Jeremy_Brand.html for more - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - "LINUX is obsolete" -- Andy Tanenbaum, Ja

[PHP] PHP and cookies and/or headers

2001-02-15 Thread Jeremy Gillies
or speed and bloat of page size reasons. Thanks in advance! Jeremy -- 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] RE: PHP and cookies and/or headers

2001-02-16 Thread Jeremy Gillies
text in the other language. thank you for your help so far, jeremy > -Original Message- > From: Angela [mailto:[EMAIL PROTECTED]] > Sent: Friday, February 16, 2001 8:57 AM > To: Jeremy Gillies; [EMAIL PROTECTED] > Subject: Re: PHP and cookies and/or headers > >

[PHP] Multiple URLs and cookies

2001-02-19 Thread Jeremy Gillies
Hello all! Okay, still going at it with PHP vs. JavaScript -- although one can remove the power if they disable cookies -- in fact, with the way it is set up here, it is doubtful they will get to the right page if they switch languages, but i can work that out later with a simple if-then statemen

[PHP] Determining what kind od software a remote server is running

2001-02-19 Thread Jeremy Bowen
Hey, A while back someone posted a link to a page where you can enter a url and the page returns the type of software the remote server is running. Did anyone save that link? Thanks, Jeremy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For

RE: [PHP] Multiple URLs and cookies

2001-02-20 Thread Jeremy Gillies
t; Visit the Zend Store at http://www.zend.com/store/ > Wanna help me out? Like Music? Buy a CD: > http://l-i-e.com/artists.htm > Volunteer a little time: http://chatmusic.com/volunteer.htm > - Original Message - > From: Jeremy Gillies <[EMAIL PROTECTED]> > Newsgroups

[PHP] Creating MySQL Entry Forms

2003-02-28 Thread Jeremy N.E. Proffitt
is an easier way... Cheers Jeremy

[PHP] PHP|Con insane pricing

2003-09-15 Thread Jeremy Brand, B.S.
, Sterlin, Thies, George Schlossnagle and JimW), but I'm not going to shell out $495 (the cheapest non-student rate) for it. Thanks, Jeremy -- "Prediction is very difficult, especially of the future." Niels Bohr http://www.nirvani.net -- PHP Gener

[PHP] Re: PHP|Con insane pricing

2003-09-15 Thread Jeremy Brand, B.S.
would be greatly appreciated. I feel like I would actually add value by being there, not only in supporting my friends who are doing speaking at the conference, but also in helping to evangelize php and help newbies with questions/fud/etc. Thanks. Jeremy Jeremy Brand, B.S. wrote: Does anyone know

[PHP] Re: PHP|Con insane pricing

2003-09-16 Thread Jeremy Brand, B.S.
Thanks again to all who at least had a mature answer. Cheers :) Jeremy Jeremy Brand, B.S. wrote: Does anyone know a way to attend the PHP|con west as an observer in Santa Clara, CA, US on Oct. 23rd without spending tons of ca$h? The pricing seems insane, and geared towards people with lots of

[PHP] New: Browser based editor of WIN.INI files (on Windows)

2006-05-10 Thread Jeremy C O'Connor
Hi This is an announcement of a new browser based editor for the C:\WINDOWS\PHP.INI file. It lets you uncomment or comment lines by clicking a checkbox, and alter the values of configuration settings. You can also insert, edit and delete lines. It is in the Beta stage of release, so please let me

[PHP] Update: That is to say PHP.INI, not WIN.INI

2006-05-10 Thread Jeremy C O'Connor
phpEditIni project. That is to say PHP.INI, not WIN.INI -- net07350 -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] phpEditIni has moved to phpeditini.net

2006-05-11 Thread Jeremy C O'Connor
The new browser based editor of PHP.INI files on Windows, phpEditIni, has moved to a new site: http://phpeditini.net Download it today! -- info at phpeditini dot net -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: phpEditIni has moved to phpeditini.net

2006-05-12 Thread Jeremy C O'Connor
"Barry" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Jeremy C O'Connor schrieb: > > The new browser based editor of PHP.INI files on Windows, phpEditIni, has > > moved to a new site: http://phpeditini.net Download it today! > > &

[PHP] PHPEditIni now supports Linux/Unix

2006-05-16 Thread Jeremy C O'Connor
The PHPEditIni PHP script now supports Linux/Unix. Use this script to edit your PHP.INI files in a browser based GUI. Visit http://phpeditini.net . -- The PHP EditIni Project [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP & SNMP

2006-05-23 Thread Pavleck, Jeremy D.
eric OID (.1.3.6.1.4.1.232.3.2.2.1.1.10.0) it does work, but only returns the numeric value. System Info: PHP 5.0.5 Net-SNMP 5.1.1 Php compiled with --with-snmp and --enable-ucd-snmp-hack Thanks. Jeremy Pavleck Network Engineer - Systems Management IT Networks and Infrastructure D

[PHP] Going through 2 arrays at once

2006-05-23 Thread Pavleck, Jeremy D.
yed into the "Controller Index:" in the other array. I hope this makes sense. Sorry if it's super simple to solve, but I tried a few things, and googled a few things, but I must have not found the right thing I was looking for, as I still can't figure it out. Thank you very much!

RE: [PHP] Going through 2 arrays at once

2006-05-23 Thread Pavleck, Jeremy D.
ks spot on for me, since no one suggested it I assume I'm not using it in it's greatest capacity and will look at other methods. But hey, at least it works, I'm happy about that! -Original Message- From: David Tulloh [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 23, 2006 9:

[PHP] Escaping double quotes

2006-05-25 Thread Pavleck, Jeremy D.
hat I'm looking for. I tried a few different functions from the website, magic_quotes, addslashes, htmlspecial etc etc but none did what I was looking for Jeremy Pavleck Network Engineer - Systems Management IT Networks and Infrastructure Direct Line: 612-977-5881 Toll Free: 1-888-

[PHP] Best way to handle multiple snmpgets

2006-05-26 Thread Pavleck, Jeremy D.
ween systems, and the 2 things that always get me are arrays and map/hashes. Some day I hope to figure this out! Jeremy Pavleck Sr. Network Engineer - Systems Management IT Networks and Infrastructure Capella University -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Long one here, but hopefully someone took their Adderall

2006-05-30 Thread Pavleck, Jeremy D.
might have to do something with the drive index number.. .But like I said, I'm very new to this all can't figure out how to combine the 2 pieces of info I need. Once I figure this out, I'll be able to play with the data more and smooth it to the way I'd like to. Any help would be wonderful - thanks! Jeremy

<    1   2   3   4