Re: [PHP] hello everybody

2012-03-18 Thread Jeremy Wei
you can read the content about form dealing in php manual: http://us.php.net/manual/en/tutorial.forms.php On Sun, Mar 18, 2012 at 7:34 PM, saeed ahmed mycomputerbo...@gmail.com wrote: i am a full time warehouse worker and do not have time.i hardly can spend 2/3 hours a week on internet(at work

RE: [PHP] semaphores are broken

2011-05-08 Thread Jeremy Greene
much code in an interrupt handler -- I have always thought that has issues too. Jeremy -Original Message- From: Rasmus Lerdorf [mailto:ras...@lerdorf.com] Sent: Sunday, May 08, 2011 11:38 AM To: Jeremy Greene Cc: php-general@lists.php.net Subject: Re: [PHP] semaphores are broken On Fri, May

[PHP] semaphores are broken

2011-05-06 Thread Jeremy Greene
not discussed more on the list... but semaphores are kind of silly in php. Jeremy

[PHP] sem_get invalid argument for existing semaphore

2011-05-04 Thread Jeremy Greene
really hope I have better luck!! Jeremy

RE: [PHP] sem_get invalid argument for existing semaphore

2011-05-04 Thread Jeremy Greene
Sorry for the bad formatting... Anyway, I did figure out the problem: php creates/expects each system v semaphore to be a semaphore group of 3. So, not only is that weird, it really should be documented. Jeremy -Original Message- From: Jeremy Greene [mailto:jer...@zeevee.com] Sent

[PHP] semaphore release before acquire warning

2011-05-02 Thread Jeremy Greene
available. I did look into disabling the warning, but that got me more concerned since it seemed like a frowned upon thing to do and even more of a performance hit. The irony is that I'm using shared memory (and signals) exactly for performance reasons L Jeremy

RE: [PHP] semaphore release before acquire warning

2011-05-02 Thread Jeremy Greene
I have had really bad luck with signals. They can be “lost” in more than one way. I thought this was the far more reliable and correct way… at least from that point of view. Jeremy From: Nathan Nobbe [mailto:quickshif...@gmail.com] Sent: Monday, May 02, 2011 5:01 PM To: Jeremy Greene

Re: [PHP] PHP Code I Must find

2008-05-29 Thread Jeremy Privett
]/ http://www.asciitable.com/ http://www.php.net/ord The rest should be easy to figure out on your own. -- Jeremy Privett C.E.O. C.S.A. Omega Vortex Corporation http://www.omegavortex.net Please note: This message has been sent with information that could be confidential and meant only

Re: [PHP] What is the practical use of abstract and interface?

2008-04-16 Thread Jeremy Privett
that call. If it is your project, do whatever you want. -- Jeremy Privett C.E.O. C.S.A. Omega Vortex Corporation http://www.omegavortex.net Please note: This message has been sent with information that could be confidential and meant only for the intended recipient. If you

Re: [PHP] What is the practical use of abstract and interface?

2008-04-16 Thread Jeremy Privett
Nathan Nobbe wrote: On Wed, Apr 16, 2008 at 12:56 PM, Jeremy Privett [EMAIL PROTECTED] wrote: This is a holy war that is never going to end. It boils down to personal and professional preferences. The fact of the matter is, if a company uses these concepts and you don't know, understand

Re: [PHP] New Ajax search component

2008-04-09 Thread Jeremy O'Connor
Nathan Nobbe [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] On Tue, Apr 8, 2008 at 7:41 AM, Jeremy O'Connor [EMAIL PROTECTED] wrote: they pretty much have that in the scriptacuous lib under Ajax.Autocompleter, atm OK, but my control only does the Ajax call when the user clicks

[PHP] New Ajax search component

2008-04-08 Thread Jeremy O'Connor
library, which you need to get from their website. You can view a demo and download the source at: http://jeremywebdeveloper.co.za/code/ajaxsearch/ -- Jeremy O'Connor -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] New Ajax search component

2008-04-08 Thread Jeremy O'Connor
Jay Blanchard [EMAIL PROTECTED] wrote in message news:[EMAIL PROTECTED] Cool...I'd have the 'submit' button hidden until results were returned so as to avoid user confusion. Yes, something to add in a later version of the component. -- Jeremy O'Connor -- PHP General Mailing List (http

Re: [PHP] Beware of round() function

2008-03-24 Thread Jeremy Privett
[EMAIL PROTECTED] wrote: Beware: round() apparently has changed its behavior from PHP 4. This is actually a change in the behavior of the float type, not the round function. Replace your round() with a cast to float and you'll see the exact same result. -- Jeremy Privett C.E.O. C.S.A. Omega

Re: [PHP] Beware of round() function

2008-03-24 Thread Jeremy Privett
Jeremy Privett wrote: [EMAIL PROTECTED] wrote: Beware: round() apparently has changed its behavior from PHP 4. This is actually a change in the behavior of the float type, not the round function. Replace your round() with a cast to float and you'll see the exact same result. Also

[PHP] mysqli_stmt_bind_result

2008-03-18 Thread Jeremy Mcentire
) ? in the local scope name as {$name}.br / : null; } Jeremy Mcentire Ant Farmer ZooToo LLC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Objects as array key names??

2008-03-15 Thread Jeremy Mcentire
On Mar 15, 2008, at 7:16 PM, Ray Hauge wrote: Jim Lucas wrote: It has been brought to my attention that with Perl and Ruby, you can use Objects as the value of the key within an array. The examples that were shown to me make me think that this would be an awesome ability to have within

Re: [PHP] Securing your Sites

2007-12-17 Thread Jeremy Mcentire
-Back-door Trojan exactly? Jeremy Mcentire Ant Farmer ZooToo LLC -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Professional inquiry for you freelancers

2007-12-05 Thread Jeremy Privett
the difference based on the client's needs. Jeremy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Loop issues

2007-11-16 Thread Jeremy Mcentire
So, take a look at what's below and see how it works for you. ?php $get_cs = SELECT DISTINCT `request_type`, `card_id`, `first_name`, `last_name` FROM `support_payment_request` WHERE `card_id` = '{$id}'; $cs_type = mssql_query($get_cs) or die(mssql_get_last_message());

Re: [PHP] Foreach question

2007-11-16 Thread Jeremy Mcentire
On Nov 15, 2007, at 7:50 PM, Juan Marcelo Rodríguez wrote: 2007/11/15, Philip Thompson [EMAIL PROTECTED]: On Nov 15, 2007 5:12 PM, Juan Marcelo Rodríguez [EMAIL PROTECTED] wrote: Yes, I made a mistake in the first sentence. The code is : [...] foreach ($equipos as $key = $val){ echo trtd;

Re: [PHP] Loop issues

2007-11-16 Thread Jeremy Mcentire
array when you display. Jeremy Mcentire Ant Farmer ZooToo LLC On Nov 16, 2007, at 1:57 PM, Dan Shirah wrote: Hello all, I am having trouble trying to figure out how I should compose this loop to give me ALL the results I want. Below are my queries. I am querying two different

Re: [PHP] Loop issues

2007-11-16 Thread Jeremy Mcentire
Yeah...see...I'm confused apparently! My while loop is getting all of the names correctly, apparently my problem is...once i get them, how do I echo each one out seperately? Based off of the print_r($cs_row) I can see all of the names. What should I be doing differently to output each

Re: [PHP] Newbie question - current date - time

2007-11-15 Thread Jeremy Mcentire
On Nov 14, 2007, at 4:21 PM, Jürgen Wind wrote: better use Date() in js ... tedd-2 wrote: Current date/time for whom? For your server, use php's date(). For the user, use javascript's date(). It's so cool to be multilingual. :-) Cheers, tedd I don't know that that's better. Then, suddenly,

[PHP] Sending Pictures to Cell Phones

2007-11-14 Thread jeremy
Hey list, I'm doing some RD for a project at my job and my boss wants the ability to send pictures to cell phones. I was wondering if anyone had any experience with this or could point me in the right direction to get started. Thanks, Jeremy -- PHP General Mailing List (http://www.php.net

Re: [PHP] Newline

2007-10-29 Thread Jeremy Mcentire
, the same thing in double quotes: some linewith a tab, a variable foo, and a newline As a result, I use single quotes whenever I can. Otherwise, double. Jeremy Mcentire Ant Farmer ZooToo LLC On Oct 29, 2007, at 6:15 AM, Nathan Nobbe wrote: On 10/29/07, Crayon Shin Chan [EMAIL PROTECTED

Re: [PHP] what is the point of prepare?

2007-10-29 Thread Jeremy Mcentire
of validation -- so they say. I'd rather not try {} catch{} a query and give an error on failure... so, I prepare the data as I test its validity anyway. Jeremy Mcentire Ant Farmer ZooToo LLC On Oct 29, 2007, at 6:06 AM, Hulf wrote: Hi, Begining using the php5 mysql functions and want to know what

Re: [PHP] problem with bind_param

2007-10-29 Thread Jeremy Mcentire
, decimal. Further, you should probably make sure that your $_POST data is set and isn't null or a variable type other than what is expected. Jeremy Mcentire Ant Farmer ZooToo LLC On Oct 29, 2007, at 9:51 AM, Hulf wrote: Hi, I am still having poblems with the php5 functions. I have 4

Re: [PHP] define() an array?

2007-04-20 Thread Jeremy Privett
] ) And isn't mixed of any type? /Peter --PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php . In this case, mixed means any scalar value. And mixed usually applies when a variable can be of more than one type, not necessarily all. -- Jeremy C

[PHP] auto page generation

2007-04-15 Thread Jeremy Adams
I'm building a website right now that will be a database of attractions in the Carolina and Virginia area. The idea is that attraction owners can submit data to the database and the database will automatically generate a page containing that information. What I'm trying to figure out is how to

Re: [PHP] Re: $35 to the first person who can do this XML-parsing PHP script

2007-03-08 Thread Jeremy Privett
Rob Gould wrote: Ok, well at least I'm honing in on the problems now. I appears that my ISP is only running php 4.4.4. So back in the PHP 4-days, what was the preferred method of doing such things? - Rob Expat would probably be the way to go, then. http://www.php.net/xml -- Jeremy C

Re: [PHP] segmentation fault - my fault?

2007-02-12 Thread Jeremy Privett
, Copyright (c) 1998-2006 Zend Technologies This function should take all elements in all arrays and flatten them down to one array. Thus the result of the example above should be array(1,2,..,6) Marc -- Jeremy C. Privett Chief Operating Officer Zend Certified Engineer Completely Unique

Re: [PHP] segmentation fault - my fault?

2007-02-12 Thread Jeremy Privett
this helps. -- Jeremy C. Privett Chief Operating Officer Zend Certified Engineer Completely Unique [EMAIL PROTECTED] Phone: 303.459.4819 Mobile:303.883.0312 Fax: 303.459.4821 Web: www.completelyunique.com This email may contain confidential and privileged material for the sole use

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: echo Wrong color.; break; } --- Jeremy C. Privett

[PHP] fwrite fopen problem

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

RE: [PHP] Max File Upload

2006-08-15 Thread Jeremy Privett
/ini.php#ini.list Like it says in the user contributed notes on that page, you have to use php_value in .htaccess to adjust the setting. Example: php_value upload_max_filesize 20M --- Jeremy C. Privett Director of Product Development Zend Certified Engineer Completely Unique [EMAIL PROTECTED] Phone

RE: [PHP] Programming question - New to PHP

2006-06-29 Thread Jeremy Schreckhise
Try $link = mysql_connect('localhost',$youruser,$yourpassword) or die(); mysql_select_db('yourdb'); $query = 'SELECT * FROM Moses_Lake_Lions'; if(!$result = mysql_query ($query,$link)) { // do error checking here } Jeremy

[PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
I ran into the same problems; here is how I solved them. 1. Install MySQL 5 2. Install PHP 5 3. Modify php.ini extensions directive to point to php_mysql.dll (the one that was packaged with php 5) 4. Here is the tricky one make sure mysql is finding the libmysql.dll packaged

RE: [PHP] Re: A variable inside a variable?

2006-06-27 Thread Jeremy Schreckhise
I ran into the same problems; here is how I solved them. 1. Install MySQL 5 2. Install PHP 5 3. Modify php.ini extensions directive to point to php_mysql.dll (the one that was packaged with php 5) 4. Here is the tricky one make sure mysql is finding the libmysql.dll packaged

RE: [PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
Here is the direct download portal for the two corrected crucial .dlls. http://dev.mysql.com/downloads/connector/php/ -Original Message- From: Jeremy Schreckhise [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 10:14 AM To: php-general@lists.php.net Subject: [PHP] Re: PHP 5

RE: [PHP] Re: PHP 5, Windows, and MySQL

2006-06-27 Thread Jeremy Schreckhise
But is libmysql.dll the dll from mysql; the one packaged with php 5 will not work. Jeremy Schreckhise, M.B.A -Original Message- From: Beauford [mailto:[EMAIL PROTECTED] Sent: Tuesday, June 27, 2006 10:33 AM To: php-general@lists.php.net Subject: RE: [PHP] Re: PHP 5, Windows, and MySQL

[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:

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

2006-05-30 Thread Pavleck, Jeremy D.
and smooth it to the way I'd like to. Any help would be wonderful - thanks! Jeremy

[PHP] Best way to handle multiple snmpgets

2006-05-26 Thread Pavleck, Jeremy D.
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] Escaping double quotes

2006-05-25 Thread Pavleck, Jeremy D.
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-CAPELLA ext. 5881 Fax: 612

[PHP] PHP SNMP

2006-05-23 Thread Pavleck, Jeremy D.
-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 Direct Line: 612-977-5881 Toll Free: 1-888-CAPELLA ext. 5881 Fax: 612-977-5053 E-mail: [EMAIL PROTECTED] mailto:[EMAIL

[PHP] Going through 2 arrays at once

2006-05-23 Thread Pavleck, Jeremy D.
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! JDP Jeremy Pavleck Network Engineer - Systems Management IT Networks

RE: [PHP] Going through 2 arrays at once

2006-05-23 Thread Pavleck, Jeremy D.
, Jeremy D. Cc: PHP LIST Subject: Re: [PHP] Going through 2 arrays at once Pavleck, Jeremy D. wrote: how do I go through 2 arrays at once with different keys? for ( $i = 0; $i sizeof($logicalDrive); $i++) { echo $arrLogDrive[$i]br /\n; } for (reset($logicalDrive); $i = key

[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

[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] Re: phpEditIni has moved to phpeditini.net

2006-05-13 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! -- info at phpeditini dot net Not interesting though since

[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] 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

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

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

2006-04-24 Thread Jeremy Schreckhise
Try print(a href='/index.php?name=$name'Foo Bar/a); Jeremy Schreckhise, M.B.A. Hello, == ?php $name = 'foo bar'; echo a href=/index.php?name=. $name .Foo Bar/a; ? == Then the URL showed up at the bottom border of the browser has 'name=foo'. What should I do to have 'name=foo bar

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- From

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, 2006 9:37 AM

RE: [PHP] PHP Script to open phpBB2 accounts

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

Re: [PHP] Array sort question

2006-02-28 Thread Jeremy Privett
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.com This email may

Re: [PHP] Array sort question

2006-02-28 Thread Jeremy Privett
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] Phone: 303.415.2592 Fax: 303.415.2597 Web

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] 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

[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 detect

Re: [PHP] Getting The Document Root

2006-02-02 Thread Jeremy Privett
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 some filesystem scanning

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 original message may

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 part. -- Jeremy Privett

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/test/ ... All I want

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 beeing

Re: [PHP] Comparing of string

2006-01-03 Thread Jeremy Privett
; } --- 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

[PHP] ODBC question

2005-12-28 Thread Jeremy Schreckhise
, but 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

[PHP] PDF permissions problems

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

[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]);

[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]);

[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]);

[PHP] gather reply from POST

2005-05-18 Thread Jeremy Reynolds
I received this useful bit of code for storing a page into a variable instead of loading it as an include. But how can I modify this to submit some parameters to a page and collect the returned page / HTML into a variable?? Jeremy -- ?php /** DocumentB.php */ $text

Re: [PHP] gather reply from POST

2005-05-18 Thread Jeremy Reynolds
On Wed, May 18, 2005 11:55 am, Jeremy Reynolds said: I received this useful bit of code for storing a page into a variable instead of loading it as an include. But how can I modify this to submit some parameters to a page and collect the returned page / HTML into a variable?? Jeremy

[PHP] XSL problem

2005-04-18 Thread Jeremy Reynolds
I'm very new to XML and XSL and feel very helpless about a problem I am having. I've tried several message boards with no luck. The problem I am having is this... === Problem: can't retrieve the 1 from the ERRORCODE tag. I've narrowed down the source to the xmlns attribute

[PHP] xml question

2005-03-29 Thread Jeremy Reynolds
across anything like that so far. How does that work? Jeremy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include literal

2005-03-28 Thread Jeremy Reynolds
What if I want to include some literal test into a PHP document that I don't want it to interpret as it loads. In particular, I am working with XML but for the example's sake I will say PHP. Example: -- DocumentA.txt: --- ?php echo 'something here'; ? --- Document B:

[PHP] Increase execution time

2005-03-10 Thread Jeremy Schreckhise
How do you increase the execution time in php? I have set max_execution_time to 360 and setting set_time_limit(0); nothing works. I still get Fatal Error: maximum execution time of 60 seconds. Please Help.

[PHP] file uploads

2005-02-26 Thread Jeremy Freedman
I got the files to upload correctly using input type=file and associated php expressions but they seem to be ascii encoded cause the jpgs and gifs are not displayed at all, just the correct placeholders which means the getImageSize() function is returning correct data! Sincerely, Jeremy

[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 type hints? The php block below is how I thought

[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: errorFatal error: Declaration of

Re: [PHP] How to nest information from different tables.

2004-07-30 Thread Jeremy Berthet
You have forgotten one table in your second query, try this : $eventdetails_query = mysql_query(select details, information, file_name from event, eventdetails where event.id = eventdetails.event_id); Karl-Heinz Schulz wrote: Thank you for the information but I still have some problems. I use

[PHP] including external C header files and libraries

2004-07-15 Thread Jeremy Booker
I have a 3rd party SDK written in C. It includes a compiled .a file and a header file (.h). Is there any way that I can call the functions included in the SDK from within a php script? Regards, Jeremy -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] Send HTML/plain text email using PHP

2004-05-31 Thread Jeremy Johnstone
it and you will have everything you need. -JEremy On Friday 28 May 2004 05:49 am, Matt MacLeod wrote: I've been having a little trouble configuring a script to send a multipart email using PHP. The script send the message, but when I recieve the email it doesn't display the HTML version and I have

Re: [PHP] CVS web front end

2004-05-31 Thread Jeremy Johnstone
Although I have never seen a full app, I have seen PHP code which handles checkin/checkout of files as a class. I don't know if that will help you, but if it will then please let me know and I will dig it up. -Jeremy On Saturday 29 May 2004 09:50 pm, Brian V Bonini wrote: On Sat, 2004-05-29

Re: [PHP] Cannot generate system identifier error while validating

2004-05-05 Thread Jeremy Clifton
. Jeremy [EMAIL PROTECTED] -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Tables in a pdf files

2004-04-13 Thread Jeremy Clifton
solution called htmldoc (you can probably find it on Google) that will convert HTML to a PDF file, but it's not as easy to deal with, and the PDFs it creates are, in my opinion, not nearly as nice as the ones created by PDF class above. Jeremy -- PHP General Mailing List (http://www.php.net

[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] PEAR Sequences

2004-04-05 Thread Jeremy Clifton
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. Thanks in advance, Jeremy -- PHP General Mailing List (http

[PHP] magic_quotes_sybase - Windows MSSQL

2004-03-10 Thread Jeremy
access to the php.ini file. Is there something like the .htaccess file that can be used on a Windows server? My ISP is using PHP v4.3.0. Thank you! Jeremy Markman -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Executing JavaScript

2004-03-04 Thread Jeremy
Of *course* you can do that with php! When the user clicks a link, with PHP respond like this: ... body onLoad=javascript:window.close() ... And voila! PHP closes the window! -J -Original Message- From: Richard Davey [mailto:[EMAIL PROTECTED] Sent: Thursday, March 04, 2004 9:58 AM To:

RE: [PHP] creating file links on linux (ln) with php

2004-02-28 Thread Jeremy
RTFM. http://us2.php.net/manual/en/function.symlink.php -Original Message- From: Merlin [mailto:[EMAIL PROTECTED] Sent: Saturday, February 28, 2004 3:24 PM To: [EMAIL PROTECTED] Subject: [PHP] creating file links on linux (ln) with php Hi there, I do have a couple of hundred file

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] 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

  1   2   3   4   >