[PHP] extension_dir

2002-09-18 Thread Ivo
as c:\php, c:\php\extensions, c:\winnt\system32 (on w2k). Finally before to give up I made an desperation action putting all dlls I needed into the c:\php\dlls dir What a happiness! All messages stating that this and that dll cannot be found disappeared! Enjoy! Ivo -- PHP General Mailing

[PHP] Re: custom user login

2002-09-19 Thread Ivo
net/manual/en/reserved.variables.php#reserved.variables.sessi on http://www.php.net/manual/en/ref.session.php regards Ivo "Daniel Negron/Kbe" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all, > > I used a s

[PHP] Re: Apache not parsing without .php on url?

2002-09-19 Thread Ivo
It seems to me that the answer is in your own posting > AddType application/x-httpd-php .php .php the only type that will be served by php if you add AddType application/x-httpd-php .txt then txt will be also served regards Ivo "Stefan" <[EMAIL PROTECTED]> wrote in messa

[PHP] Re: How do I use a Javascript variable in PHP?

2002-09-23 Thread Ivo
You could do this ONLY by passing the var to a new URL with the desired php (your script). Otherwise the php will be executed (on the server) before JS (which will be executed on the client after receiving the php result page) regards Ivo "Tom" <[EMAIL PROTECTED]> wrote i

[PHP] Re: Function: return multple values

2002-09-23 Thread Ivo
You can only as an array: function calculate_money($sum) { // some hanky panky calculations $myArr[] = $type; $myArr[] = $amount; return $myArr; } or shorter: function calculate_money($sum) { return array($type, $amount); } "Faisal Abdullah" <[EMAIL PROTECTED]> wrote in message [

[PHP] Re: session_start function breaks flush function in 4.2.1

2002-09-23 Thread Ivo
Flush is not reliable to do what is supposed for different reasons explained in http://www.php.net/manual/en/function.flush.php If you want to omit session_start you could substitude it with $_SESSION['whatever_name'] = 'myvqlue'; Note: Do not use global $_SESSION regads

[PHP] Take JS array send by form

2001-08-01 Thread Ivo
form with more than one field - i.e. pm[2] - in my php script only the last value is seen, others are lost i.e. I loose pn[0], pn[1] and receive only pn[2] as a *pn* variable. I mean that it is NOT an array at all. What's the problem and how could I solve it? Thank you Ivo -- PHP Gener

RE: [PHP] strip white space

2003-07-02 Thread Ivo Pletikosic
would $team_name = trim(ereg_replace( " +", " ", $team_name )); do it? -Original Message- From: Steve Buehler [mailto:[EMAIL PROTECTED] Sent: Wednesday, July 02, 2003 9:50 AM To: PHP Subject: [PHP] strip white space I am not sure how to go about this and hope that someone can help here

[PHP] Uploading files time out every so often

2003-07-03 Thread Ivo Pletikosic
this issue or a similar issue? Any pointers and help is greatly appreciated. Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] [SESSION] Session variable deleted prior to command?

2003-07-16 Thread Ivo Fokkema
#x27;last_logn']."\n"); $_SESSION['last_logn'] = ""; } - So, you might think this will display the welcome message with the last login time below it. No, it doesn't. When I quote the line '$_SESSION['last_logn'] = "";' it does

Re: [PHP] Verifying a certain amount of numbers

2003-07-16 Thread Ivo Fokkema
aces) but for larger input or many iterations I'd rather use Perl compatible... -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: Problem with Apache Web Server config file and PHP (please give advice on what problem may be me)

2003-07-17 Thread Ivo Fokkema
Good luck! -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands "Karen Santmyer" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > HI: > > Can anyone refer me to someo

[PHP] Re: really no way to get byte size of variable?

2003-07-17 Thread Ivo Fokkema
trlen($val); } But I'm really not sure how PHP stores arrays, so I don't know if $total_size is even close to the amount of bytes used for an array. -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre N

[PHP] Re: Need Help: Please click on Test Link

2003-07-17 Thread Ivo Fokkema
Well, worked nicely for me... Can you tell me where you can fetch this kind of information? -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands "Suhas Pharkute" <[EMAIL PROTECTED]> w

[PHP] Re: Mail From option in PHP.ini

2003-07-21 Thread Ivo Fokkema
receive any delivery errors. I used Reply-To, Error-To and whatever more, but I couldn't fix it. Maybe something can be added to a later release of PHP to fix this? I for one would be extremely happy with that. -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP &

Re: [PHP] Sending email with the windows version of php

2003-07-21 Thread Ivo Fokkema
he windows > version connects to a smtp server and sends the message its self. You would need to set 'SMTP' and 'sendmail_from' in your php.ini. The 'sendmail_path' doesn't work for Windows, so you can leave that blank. Nothing else changes then... -- [Win2000

[PHP] Re: mail function

2003-07-21 Thread Ivo Fokkema
ent-Type: text/plain; charset=iso-8859-1\r\n"; $headers .= "X-Priority: 3\r\n"; $headers .= "X-MSMail-Priority: Normal\r\n"; $headers .= "X-Mailer: PHP/".phpversion()."\r\n"; $headers .= "From: Name <[EMAIL PROTECTED]>\r\n"; $body = "

Re: [PHP] Re: mail function

2003-07-21 Thread Ivo Fokkema
I do get the notification mail when mail bounces. That's funny, because I always had that problem, too. By adding Reply-To and Return-path, it did not fix my problem. Boucing emails never got back to me. Return-path was overwritten by my hostingserver to '[EMAIL PROTECTED]'

[PHP] Re: Help?

2003-07-21 Thread Ivo Fokkema
on, you can use your first script. I want to warn you though, PHP depricates the use of register_globals = On, so it would be recommendable to use your modified script and keep coding using $_POST, $_GET and these kind of global variables. -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/

Re: [PHP] Re: Help?

2003-07-22 Thread Ivo Fokkema
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Ivo Fokkema ([EMAIL PROTECTED]): > > I want to warn you though, PHP depricates the use of register_globals = On, > > so it would be recommendable to use your modified script a

[PHP] Re: Warnings when trying to write to file

2003-07-22 Thread Ivo Fokkema
ther, but I do on my localhost (Windows 2000). HTH, -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands "Dore Van Hoorn" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Hi, >

[PHP] Re: Apache 2.x and PHP

2003-07-22 Thread Ivo Fokkema
support for Apache 2 is experimental. It's highly recommended you use PHP with Apache 1.3.x and not Apache 2. (...) -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: header & headers_sent BUG

2003-07-23 Thread Ivo Fokkema
You might want to check whether or not your header output is getting buffered. My suggestion is a flush() after the fist call. I'm not an expert on this, it's just an idea. HTH -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands "James

[PHP] Re: Opinon please - Host refuses to install a later version than 4.2.3 - says they're too buggy.

2003-07-23 Thread Ivo Fokkema
#x27;t return all the information necessary. I'm not sure about other bugs but I haven't encountered other problems. -- Ivo Fokkema PHP & MySQL programmer -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Difference between equal $_SERVER variables?

2003-07-24 Thread Ivo Fokkema
re looking for when they hit a 404) but can $_SERVER['SCRIPT_NAME'] and $_SERVER['PHP_SELF'] be different? TIA, -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] php function on php.net

2003-07-24 Thread Ivo Fokkema
.htaccess, the URL will not change, but you will be redirected. Therefor you can use $_SERVER['REQUEST_URI'] in your 404-page to check what the visitor was looking for. HTH, -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing

Re: [PHP] Difference between equal $_SERVER variables?

2003-07-24 Thread Ivo Fokkema
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Ivo Fokkema ([EMAIL PROTECTED]): > > Hi list, > > > > Just out of curiosity I would like to know if anyone can tell me the > > difference between some $_SERVER

[PHP] ereg() can't recognize characters such as èéêë...

2003-07-29 Thread Ivo Fokkema
ny ideas? http://www.ncbi.nlm.nih.gov/entrez/query.fcgi?cmd=Retrieve&db=Pub Med&dopt=Abstract&list_uids=\\1\" target=\"_blank\">\\2","{PMID11519736:Müller}"); print ($val); ?> TIA! -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23.53] Ivo Fokkema PHP

[PHP] Re: ereg() can't recognize characters... [SOLVED]

2003-07-29 Thread Ivo Fokkema
s:[EMAIL PROTECTED] > Use preg_*() functions then? Not that I think they would be much better > but... > > -- > // DvDmanDT > MSN: [EMAIL PROTECTED] > Mail: [EMAIL PROTECTED] > "Ivo Fokkema" <[EMAIL PROTECTED]> skrev i meddelandet > news:[EMAIL PROTECTED] >

[PHP] Re: anchor in php page

2003-07-29 Thread Ivo Fokkema
thesite.com/thepage.asp?go=here > > where "here" -the value - in the string query would be marked up as: > ... > // thepage.asp > > > blah,blah,blah, etc... > > ... > > Can this be done using php? Why not use :

[PHP] Re: ereg() can't recognize characters... [SOLVED]

2003-07-29 Thread Ivo Fokkema
f two separate links... Thanks again! Ivo "Dvdmandt" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Also... You know, there's a (.*?) command as well.. Might work just about > perfect in your situation... > > -- > // DvDmanDT > MSN: [EMAIL P

[PHP] Re: anchor in php page

2003-07-29 Thread Ivo Fokkema
7;]); exit; } //rest of your code ?> This code detects the availability of a '?go=...' variable and refreshes itself with the given position. 'test.php?go=here' will reload to 'test.php#here'. Sorry if this is not what you need. Ivo "Anthony Ri

[PHP] Re: debuging and getting mor information about failures

2003-07-30 Thread Ivo Fokkema
y? Getting these errors at the last line in your script generally means that you omitted a closing '}'. So when you would do : You will get a similar error. Check all of your functions and if/else/foreach/ etc. structures for an omitted '}' to fix your script.\ Good luck! -- Ivo

Re: [PHP] learning php - problem already

2003-07-30 Thread Ivo Fokkema
onfusing for me at first. So occasionally when I need to add elements during a loop, I still use while(list(..) = each(...)). -- Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] The return of mysql_fetch_assoc()

2003-07-30 Thread Ivo Fokkema
desired value. Why don't you use : This will do exactly what you need, if I understand you correctly. HTH, -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: php path statement appears on my webpages

2003-07-31 Thread Ivo Fokkema
If you don't run PHP as an CGI but as an module, you don't even need this line. My guess is that you run PHP as a module, so delete the line to fix your problem. HTH, -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands "Jim M Gronquist" &

Re: [PHP] Where am i screwing up?

2003-07-31 Thread Ivo Fokkema
>$value) // clear all previous sessions > { > if(isset($_SESSION['$key'])) > { > unset($_SESSION['$key']); > } > } This is no good, now it's going to delete $_SESSION['0'] and so on. This top function seems OK to me as it was, but using $v

[PHP] Test a zip file for validity

2003-08-01 Thread Ivo Pletikosic
Hello all, How do I go about checking if a file is a zip file? Wrapping the zipinfo utility in php did not help since it does not return an exit code whether it succeeded or not. Thanks, IP -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.ph

RE: [PHP] Invalid Characters, XML...

2003-08-04 Thread Ivo Pletikosic
I had a similar problem recently, but was not able to work with it in PHP tho. The array for that mapped characters to their entity turned out to be HUGE and it took forever to evaluate long XML files. I ended up killing several birds with one stone by wrapping the html-tidy utility (tidy.sourcefo

[PHP] Re: manipulate mail header

2003-08-06 Thread Ivo Fokkema
set the Content-Type: > multipart/mixed. Same with content-class. > > If you have any idea how to manipulate the header, please mail me. Thanks > Klausi All you need @ http://www.php.net/mail HTH -- Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Re: Parse error not understood

2003-08-08 Thread Ivo Fokkema
27;s easier to track missing braces. I know people have their own coding style - I just find it easy for me. -- Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: mail() function failure

2003-08-11 Thread Ivo Fokkema
eaders .= "X-Mailer: PHP/".phpversion()."\r\n";//I use this, I'm not sure if you really need this header $headers .= "From: [EMAIL PROTECTED]"; $headers .= "Reply-to: [EMAIL PROTECTED]"; $headers .= "Return-path: [EMAIL PROTECTED]"; $headers

Re: [PHP] HTML equivalents of accented characters

2003-08-14 Thread Ivo Fokkema
r $translationtable send back? Ivo "Liam Gibbs" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > > I have no idea what might be the problem, what does your translation table > > look like? > > Mine is still coming out as a single character. Here&#

Re: [PHP] HTML equivalents of accented characters

2003-08-14 Thread Ivo Fokkema
_ENTITIES); var_dump($a); ? With me, it returns a 99 elements array with loads of characters, including the "é". (PHP/4.2.3 on Win2000) I have no idea what might be the problem, what does your translation table look like? -- Ivo Fokkema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] PHP - MySQL Query...

2003-08-14 Thread Ivo Fokkema
This is not true, the resource link identifier is optional! If unspecified, the last opened link is used. My suggestion is to check the results of mysql_error() for more information on the failed query. HTH, Ivo "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message news:[EMAIL

[PHP] Re: Parse error not understood

2003-08-14 Thread Ivo Fokkema
$ in > /var/www/html/Sessions/userman.php on line 83 > > Line 83 is '?>'.. You missed a '}' at lines : if($count==0) { //User does not exist in the database header('location: user_not_exists.php'); exit(); Add a '}' after this, and your problem is fixed! -- Ivo Fokkema PHP & MySQL programmer Leiden University Medical Centre Netherlands -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] Extracting Compressed Files

2003-08-14 Thread Ivo Pletikosic
Hey Matt, Below is a cut down version of how I'm doing it. I lifted most of it right out of the manual examples. It assumes a single entry in each compressed file. function uncompress($filepath, $new_filename, $compression) { if($compression == COMPRESSION_GZIP) { $zp = gzopen( $f

Re: [PHP] how to change index.php?passwd to index.php in the address bar

2003-08-14 Thread Ivo Fokkema
ix this setting. This is not a standard setting AFAIK. HTH, -- Ivo "Murugesan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I used the post method in the form tag. But I am getting the following error > > Method Not Allowed > The requested method POS

Re: [PHP] php.ini configuration can we have two include_path in php.in file

2003-08-14 Thread Ivo Fokkema
I think Justin means you could CREATE the file with that exact content he has given you. With a .htaccess file, you can override settings of your php.ini file. HTH, Ivo "Murugesan" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > I am not able to loca

[PHP] Re: global scope issue

2003-08-14 Thread Ivo Fokkema
should be in the global scope right? > Any help please? As far as I know, no defined variable is global by default. If you would really need this variable to be global, you'll need to do a global $test; to make $test global. HTH, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Max script size

2003-08-14 Thread Ivo Fokkema
DNS error. Run on a local Windows box, it crashed Apache. -- Ivo "Jay Blanchard" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] [snip] Sorry, in terms of PHP error no. I get a page cannot be displayed/DNS error. It happens instantly...in fact, not 1 line of script ex

Re: [PHP] Max script size

2003-08-14 Thread Ivo Fokkema
"Jason Wong" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Monday 11 August 2003 19:59, Ivo Fokkema wrote: > > > > I must say I don't agree. Although it seems odd, I received a DNS error a > > while ago while creating a script using the

[PHP] Re: Cache Question

2003-08-14 Thread Ivo Fokkema
Hi Tony, Chris explained a lot about this... I'm not an expert on this, but you might want to give a try to embed something like : ""; And then let mp3.php send all of the no-cache headers together with the contents of the filename.mp3. It might work, I would give it a try..

Re: [PHP] HTML equivalents of accented characters

2003-08-14 Thread Ivo Fokkema
s($result[0]); > $result[2] = htmlentities($result[0]); > > Both return the accented E unchanged. I bet they do, did you check the HTML source as well? My guess is that the source is reading the actual expected output, but your browser views "é", as it should of course. HTH, -- I

Re: [PHP] Mail() Problem Sending

2003-08-19 Thread Ivo Fokkema
\n"; $headers .= "Return-path: Name <[EMAIL PROTECTED]>\r\n"; $headers .= "Error-to: Name <[EMAIL PROTECTED]>\r\n"; mail("Yourname <[EMAIL PROTECTED]>", "Subject", $body, $headers); HTH, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] parse_ini_file() difference between empty value and Off?

2003-08-19 Thread Ivo Fokkema
ing? Any ideas on this? The default values may sometimes be a bit more complex than just 'On' or 'Off', so I really need to see the difference between a user requesting the Default value or setting it to Off. TIA, Ivo -- [Win2000 | Apache/1.3.23] [PHP/4.2.3 | MySQL/3.23

Re: [PHP] Mail() Problem Sending

2003-08-19 Thread Ivo Fokkema
"Curt Zirzow" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > * Thus wrote Ivo Fokkema ([EMAIL PROTECTED]): > > True! But actually, I' ve seen people using only the 'From:' header to send > > mail. Emails can then be dropped easily by

RE: [PHP] Serving files with different filename from their own

2003-06-27 Thread Ivo Pletikosic
You can also initiate the download with headers yourself...tho it might be a bit cumbersome than just using direct links: Header( "Content-Type: application/octet-stream" ); Header( "Content-Length:" . filesize( $path ) ); Header( "Content-Disposition: attatchment; filename=$filename" ); readfile

[PHP] PHP to Excel (csv)

2002-10-07 Thread Ivo Stoykov
? Thank you Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Re: PHP to Excel (csv)

2002-10-09 Thread Ivo Stoykov
Thank you for your help. Ivo "Ivo Stoykov" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi > > I have following problem. > > Some data retreived from mysql db I need to send to the user as a *.csv > file. Usuall

Re: [PHP] PHP Interview questions

2003-08-27 Thread Ivo Fokkema
"Gabriel Guzman" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > On Tue, 2003-08-26 at 10:00, CPT John W. Holmes wrote: > > > PHP is server side, so it obviously cannot control light bulbs. Use > > javascript. > > maybe the lightbulbs are connected to the server :) as seems to be the

[PHP] Re: accessing $GLOBALS values

2003-09-02 Thread Ivo Fokkema
d to problems when you use the name of a constant as a key. I hope this is clear, more info can be found at http://www.php.net/manual/en/language.types.array.php and scroll down to 'Array do's and don'ts' -> 'Why is $foo[bar] wrong?' HTH, Ivo Fokkema -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] -f function ???

2003-09-09 Thread Ivo Fokkema
is set to safe_mode. HTH, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Encrypt/Serialize Source Code for Sale

2003-09-09 Thread Ivo Fokkema
k.com/utils_obfuscate.php Phrozen http://sourceforge.net/projects/phrozen/ POBS http://pobs.mywalhalla.net/ Anyone have any recommendations or experience with any? -- Ivo "Evan Nemerson" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] > Take a look at Turck MMCache (fre

[PHP] Re: Validating Subdomain E-mail Addresses Using Regular Expressions

2003-09-10 Thread Ivo Fokkema
]+)[EMAIL PROTECTED](\.[a-z0-9-]+)*(\.[a-z]{2,3})$"; > > if(eregi($empatt, $email)) >{ > //do stuff >} > > -- End Code -- Try this pattern (which I use): "[EMAIL PROTECTED],4}$" HTH, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Pictures stored in database and IE

2003-10-20 Thread Hanuska Ivo
I have to send on the end after data are transmitted? Or, do I have to send just headers and data and nothing else. But anyway I think, problem is on PHP(?)/mine site, not on IEs side. Looking forward for your ideas, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] HTTP request contents

2003-10-24 Thread Hanuska Ivo
Hi everyone, I need to know, if there is a possibility to read full contents of HTTP request. I know, the response can be sent by header() function. But can I get the request of the client for server? Thank you, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit

[PHP] if("NANC" < 0) - always evaluates TRUE...

2004-01-06 Thread Ivo Pletikosic
...no matter what follows the NANC...seems like a bug. if("NA" < 0) { print("err 1\n"); } if("NAN" < 0) { print("err 2\n"); } if("NANC" < 0) { print("err 3\n"); } if("NANCY" < 0) { print("err 4\n"); } // output err 3 err 4 -- PHP General Mailing List (http://www.php.net/) To unsub

RE: [PHP] if("NANC" < 0) - always evaluates TRUE...

2004-01-06 Thread Ivo Pletikosic
s: $data = 'NANC'; if(is_numeric($data) && $data < 0) { die('Not OK'); } print('OK'); Where do I file this for developers with some time on their hands to look at? Thanks, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Strong typed or Weak typed? (was: if("NANC" < 0) - always evaluates TRUE...)

2004-01-06 Thread Ivo Pletikosic
> -Original Message- > From: CPT John W. Holmes [mailto:[EMAIL PROTECTED] > > From: "Kelly Hallman" <[EMAIL PROTECTED]> > > > On Tue, 6 Jan 2004, Ivo Pletikosic wrote: > > > $data = 'NANC'; > > > if(is_numeric($data) &am

RE: [PHP] Verifying a url

2004-01-06 Thread Ivo Pletikosic
It did not work for me but since I have only one http port and one https port on my server i use instead if( $_SERVER['SERVER_PORT'] == "80" ) echo 'http'; C. > -Original Message- > From: Richard Davey [mailto:[EMAIL PROTECTED] > Sent: Tuesday, January 06, 2004 6:56 PM > To: Thomas And

RE: [PHP] view outputed headers?

2004-01-12 Thread Ivo Pletikosic
I've been using mozilla firebird as a test browser with the 'Live HTTP Headers' extension. I've found it most useful. http://texturizer.net/firebird/extensions/#livehttpheaders > -Original Message- > From: Scott Taylor [mailto:[EMAIL PROTECTED] > Sent: Sunday, January 11, 2004 9:34 PM >

[PHP] Q: Array

2002-01-10 Thread Ivo Stoykov
=> 'bla', 'two' => 'blabla', 'three' => 'blablabla'); // integers & strings latter could be seen using while(list($k, $v) = each($b)) {...} Result will be 0 (the key) = 'bla' (the value) one (the key of the *same* element) = '

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
blabla'); while(list($k, $v) = each($b)) { print "$k - $v"; } the result will be 0- bla one - bla 0 (the key) = 'bla' (the value) one (the key of the *same* element) = 'bla' (the *same* value) and so on ... "Michael Sims" &l

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
field names as keys. ') So the question is answered. Thank you for your help. Best regards Ivo "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 09:18 PM 1/10/2002 +0100, Ivo Stoykov wrote: > >How could I

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
field names as keys. ') So the question is answered. Thank you for your help. Best regards Ivo "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 09:18 PM 1/10/2002 +0100, Ivo Stoykov wrote: > >How could I

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
names as keys. ') So the question is answered. Thank you for your help. Best regards Ivo "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 09:18 PM 1/10/2002 +0100, Ivo Stoykov wrote: > >How could I

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
field names as keys. ') So the question is answered. Thank you for your help. Best regards Ivo "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 09:18 PM 1/10/2002 +0100, Ivo Stoykov wrote: > >How could I

Re: [PHP] Q: Array

2002-01-11 Thread Ivo Stoykov
field names as keys. ') So the question is answered. Thank you for your help. Best regards Ivo "Michael Sims" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 09:18 PM 1/10/2002 +0100, Ivo Stoykov wrote: > >How could I

[PHP] HOWTO: detect browser's script enabled?

2002-01-29 Thread Ivo Stoykov
Hi I've fillowing (dull perhaps) question: Could I chanck somehow whether the browser has script enabled. I'd like to use it for my statistics. I saw such into http://www.extreme-dm.com/tracking/ free tracking service. Thank you. Ivo -- PHP General Mailing List (http://www.ph

[PHP] HOWTO Q: detect browser's script enabled? - II

2002-01-29 Thread Ivo Stoykov
ght groups? All the best Ivo > Hi > > I've fillowing (dull perhaps) question: > > Could I chanck somehow whether the browser has script enabled. I'd like to > use it for my statistics. > I saw such into http://www.extreme-dm.com/tracking/ free tracking service. &g

[PHP] Re: Array() Limit

2002-01-29 Thread Ivo Stoykov
RAM is less then max 32 bit number anyway. Ivo "Zach Curtis" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Is there a limit to the number of key=value pairs that can be stored in an > array? Or is this more a function of RAM

[PHP] Re: HOWTO Q: detect browser's script enabled? - II

2002-01-29 Thread Ivo Stoykov
Thank you very much Arve. Ivo "Arve Bersvendsen" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Ivo Stoykov wrote in [EMAIL PROTECTED]:">news:[EMAIL PROTECTED]: > > > Hello again > > > > earlier today I

[PHP] whic OS is under?

2002-02-04 Thread Ivo Stoykov
Hi group: Is there a way to guess which OS the script is running? I couldn't find anything in the manual about this. Thank you Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Get Pagetitle with PHP

2002-05-02 Thread Ivo Neuhauser
Hi, is it possible to get the HTML-Pagetitle with PHP? Thanks for help. Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] include nubie question - need help

2001-07-10 Thread Ivo Stoykov
Hello I migrated to php 4.0.5 under windows IIS 5/win2000 AS The following line - if($HTTP_POST_VARS['user_name']) { ... WHATEVER ...} - returns me following error with and without global $HTTP_POST_VARS Warning: Undefined index: user_name in E:\10ioWebSite\sales\login.php on line 99 and the l

[PHP] Re: include nubie question - need help

2001-07-11 Thread Ivo Stoykov
he if line! i.e. if($HTTP_POST_VARS["user_name"]) This is what is strange and I cannot undertand... Ivo "Rehuel Lobato De Mesquita" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hey Ivo > > When PHP find an empty st

[PHP] Undefined index?

2001-07-11 Thread Ivo Stoykov
Hi everybody Does anybody knows what means "Undefined index" error? I couldn't find it in docs neither in php online doc site. Thank you Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAI

[PHP] Q: tutor about PHP

2001-08-17 Thread Ivo Stoykov
Hello I wonder whether there is any tutor about PHP objects. Could you help me with a URL? Thank you Ivo -- 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

[PHP] Re: tutor about PHP

2001-08-17 Thread Ivo Stoykov
Thanks. "_lallous" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > zend.com > php.net > > and lots more.. > -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To c

RE: [PHP] Download Script

2004-08-27 Thread Ivo Pletikosic
> I am > wondering if this is my headers that are doing this, but I > really dont know. I think its an IE or Windows behavior and what causes it is the multiple dots in the filename. I resorted to naming our downloads "filename-v1_0_2_1.exe" > -Original Message- > From: Aaron Todd [mail

[PHP] Re: confirm subscribe to php-gene...@lists.php.net

2012-10-29 Thread Ivo Engelhardt
-- Ivo Engelhardt engelha...@fastmail.fm Am Di, 30. Okt 2012, um 6:25, schrieb php-general-h...@lists.php.net: > Hi! This is the ezmlm program. I'm managing the > php-general@lists.php.net mailing list. > > I'm working for my owner, who can be reached > at php-ge

[PHP] form's variable access problem

2001-02-19 Thread Ivo Stoykov
inux. Any ideas how could I avoid this? Thank you Ivo -- 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] debug?

2001-02-19 Thread Ivo Stoykov
Hi I wonder is there a debugging/tracing program for php? THank you Ivo -- 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] form's variable access problem

2001-02-20 Thread Ivo Stoykov
ittle time: http://chatmusic.com/volunteer.htm > - Original Message - > From: "Ivo Stoykov" <[EMAIL PROTECTED]> > Newsgroups: php.general > Sent: Monday, February 19, 2001 1:59 PM > Subject: [PHP] form's variable access problem > > > > Hi guys

[PHP] Suggestions of GPL plugin-system?

2007-01-29 Thread Ivo F.A.C. Fokkema
, PHP-Nuke, PHPbb, etc, etc.) that you have been working with as a coder. Could any of you suggest a certain GPL application that has a great module setup that I could take a look at? Thanks a lot for your time! Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, v

[PHP] Re: Suggestions of GPL plugin-system?

2007-01-31 Thread Ivo F.A.C. Fokkema
. So I guess, inspired by the Drupal system, I'm going to create a much smaller system that I will implement myself... Thanks again! Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] When is gettimeofday() or microtime() unavailable?

2011-08-04 Thread Ivo F.A.C. Fokkema
timeofday() system call available? Any help is highly appreciated. Thanks, Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] Cron running 'Hello world' script dies with "Could not startup."

2006-08-08 Thread Ivo F.A.C. Fokkema
Dapper install, same result. - PHP version: 4.4.2-1build1 - Yes, I've verified that I'm using the PHP-cli executable. Thanks for any input! Ivo -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] Cron running 'Hello world' script dies with "Could not startup."

2006-08-08 Thread Ivo F.A.C. Fokkema
On Tue, 08 Aug 2006 09:10:53 -0400, John Nichel wrote: > Ivo F.A.C. Fokkema wrote: >> Suddenly my backup scripts die with the error "Could not startup.". Only >> through the cron, it runs fine through the console. I've tried all kinds >> of tests with other PHP

  1   2   >