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
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
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
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
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
[
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
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
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
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
#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
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
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
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
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
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 &
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
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 = "
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]'
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/
"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
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,
>
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
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
#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
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
.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
"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
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
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]
>
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 :
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
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
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
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
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
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" &
>$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
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
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
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
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
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
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
_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
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
$ 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
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
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
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
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
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
"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
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..
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
\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
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
"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
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
? Thank you
Ivo
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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
"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
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
is set to safe_mode.
HTH,
Ivo
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
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
]+)[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
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
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
...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
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
> -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
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
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
>
=> '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) = '
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
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
> 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
--
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
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]
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]
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-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
.
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
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
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
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 - 100 of 181 matches
Mail list logo