[PHP] [EMAIL PROTECTED]

2008-01-24 Thread Marek Zdybel

-- 
Fotograf Ĺšlubny
http://mzdybel.pl
tel. 607 825 735
gg:4203195
skype: marek.zdybel

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2007-09-13 Thread Teo Mattiozzi

[EMAIL PROTECTED]




[PHP] [EMAIL PROTECTED]: Re: [PHP] what is my dns ip address]

2007-09-01 Thread Robert Degen

 Or read the contents of /etc/resolv.conf

I'm not familiar with, but does any MS product have any 
comparable file? I remember a host(s) ... file somewhere below 
system32\etc\... but is there any resolv.conf ?

I got no win machine here with me, so I can't look it up :-)

 Faster for static DNS servers, but if you're using DHCP 
 assigned servers, 
 they aren't likely to be in there.

[...]

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]: Re: [PHP] what is my dns ip address]

2007-09-01 Thread Richard Heyes

Robert Degen wrote:

Or read the contents of /etc/resolv.conf


I'm not familiar with, but does any MS product have any 
comparable file?


There is a hosts file, but no resolv.conf or equivalent AFAIK.

--
Richard Heyes
+44 (0)800 0213 172
http://www.websupportsolutions.co.uk

Knowledge Base and HelpDesk software
that can cut the cost of online support

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]

2007-05-10 Thread Frank Arensmeier

Sorry, your question has nothing to do with PHP. Maybe try a CSS list?

http://www.google.com/search?rls=sv-seq=css+discussion 
+listie=UTF-8oe=UTF-8

http://www.google.com/search?rls=sv-seq=why+ie+sucksie=UTF-8oe=UTF-8
http://whyiesucks.blogspot.com/

//frank

9 maj 2007 kl. 15.13 skrev Farid Jamea:


Hello,

To me this seems to be a very strange problem.

I have a static html page (index.html) that shows correctly on both  
FF2 

IE7.

I splitted the website up into different sections: (header,  
footer, ...). To

do this I have used:
--
?php
require(header.php);
?
Some code goes here...
?php
require(footer.php);
?
--
 and so on.
When I test my page (now index.php), it shows perfect on Firefox,  
but in IE
some stuff are not in their right place. I have checked the source  
code of

both index.html and index.php and they seem both identical to me.

Do you know why IE fails to correctly render the page?

Thanks

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]

2007-05-10 Thread Tom Rogers
Hi,

Wednesday, May 9, 2007, 11:13:50 PM, you wrote:
FJ Hello,

FJ To me this seems to be a very strange problem.

FJ I have a static html page (index.html) that shows correctly on both FF2 
FJ IE7.

FJ I splitted the website up into different sections: (header, footer, ...). To
FJ do this I have used:
FJ --
FJ ?php
FJ require(header.php);
?
FJ Some code goes here...
FJ ?php
FJ require(footer.php);
?
FJ --
FJ  and so on.
FJ When I test my page (now index.php), it shows perfect on Firefox, but in IE
FJ some stuff are not in their right place. I have checked the source code of
FJ both index.html and index.php and they seem both identical to me.

FJ Do you know why IE fails to correctly render the page?

FJ Thanks 


Could be stray carriage returns in your include files, good idea to
remove any '? in the include files as they are not needed.

-- 
regards,
Tom

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]

2007-05-10 Thread Daniel Brown

   Farid,

   Can you copy each .php file to a .phps extension and link us to it?
That will allow us to view the source of each page and see for ourselves.
If there's any private information (passwords, database info, etc.),
however, please DO NOT do this.  Only if it's a simple HTML-style page.

On 5/10/07, Tom Rogers [EMAIL PROTECTED] wrote:


Hi,

Wednesday, May 9, 2007, 11:13:50 PM, you wrote:
FJ Hello,

FJ To me this seems to be a very strange problem.

FJ I have a static html page (index.html) that shows correctly on both
FF2 
FJ IE7.

FJ I splitted the website up into different sections: (header, footer,
...). To
FJ do this I have used:
FJ --
FJ ?php
FJ require(header.php);
?
FJ Some code goes here...
FJ ?php
FJ require(footer.php);
?
FJ --
FJ  and so on.
FJ When I test my page (now index.php), it shows perfect on Firefox, but
in IE
FJ some stuff are not in their right place. I have checked the source
code of
FJ both index.html and index.php and they seem both identical to me.

FJ Do you know why IE fails to correctly render the page?

FJ Thanks


Could be stray carriage returns in your include files, good idea to
remove any '? in the include files as they are not needed.

--
regards,
Tom

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





--
Daniel P. Brown
[office] (570-) 587-7080 Ext. 272
[mobile] (570-) 766-8107


Re[2]: [PHP] [EMAIL PROTECTED]

2007-05-10 Thread Tom Rogers
Hi,


Could be stray carriage returns in your include files, good idea to
remove any '? in the include files as they are not needed.

Perhaps I should have said:

remove any '?' at the END of the include file as they are not needed,
of course any escaping to html in the middle will still be needed. :)


-- 
regards,
Tom

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2007-05-09 Thread Farid Jamea
Hello,

To me this seems to be a very strange problem.

I have a static html page (index.html) that shows correctly on both FF2  
IE7.

I splitted the website up into different sections: (header, footer, ...). To 
do this I have used:
--
?php
require(header.php);
?
Some code goes here...
?php
require(footer.php);
?
--
 and so on.
When I test my page (now index.php), it shows perfect on Firefox, but in IE 
some stuff are not in their right place. I have checked the source code of 
both index.html and index.php and they seem both identical to me.

Do you know why IE fails to correctly render the page?

Thanks 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2006-08-24 Thread Mourad Boulahboub
news.gmane.org

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2006-06-15 Thread Pham Huu Le Quoc Phuc


-Original Message-
From: Jochem Maas [mailto:[EMAIL PROTECTED] 
Sent: Thursday, June 15, 2006 5:20 PM
To: Barry
Cc: php-general@lists.php.net
Subject: Re: [PHP] Re: File Download Headers

Barry wrote:
 Richard Lynch schrieb:
 and are all you can find from Google?
 O_o
 
 Anybody?
 What?!?

Barry, chances are Richard was already initiating downloads
when you were still eating from a bottle.

 
 
 I for myself use this:
 header(Content-Type: application/force-download);
 header(Content-Type: application/octet-stream);
 header(Content-Type: application/download);

IIRC:
one Content-Type header per request is all your allowed,
php will overwrite the first to 'Content-Type' header calls with
the content

 
 Never had any problems with any browser.

have you ever used/tried Mosiac1.0?

 
 Barry

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2006-04-11 Thread Ryan A
Hey,


-


[snip]
After a lot of searching through the page source I see that the first
Try A
Teen has a line break (after the n in teen whatevers there appears
on
the next line), thats why it seems different...but when I went into the
mySql db via phpmyadmin...there is no linebreak to be found
anywhereand
all the other titles are working perfectly fine... what do you think is
the
problem? Bug? Something with the script? MySql?
[/snip]

Let's try an experiment, do a string replace to get rid of the newline
and report back what happens.--I did a
this:$flick_name  = rtrim($row[5]);But no joy if I do a string replace
how do I specify the newline in the needle parameter of the str_replace?I'm
pretty sure I have to use chr() but not sure how...am looking at the ascii
table now...Thanks!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] [EMAIL PROTECTED]

2006-04-11 Thread Jay Blanchard
[snip]
Let's try an experiment, do a string replace to get rid of the newline
and report back what happens.--I did a
this:$flick_name  = rtrim($row[5]);But no joy if I do a string
replace
how do I specify the newline in the needle parameter of the
str_replace?I'm
pretty sure I have to use chr() but not sure how...am looking at the
ascii
table now...Thanks!
[/snip]

http://www.php.net/str_replace

$new = str_replace(\n,  , $row[5]);

echo $new;

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



RE: [PHP] [EMAIL PROTECTED]

2006-04-11 Thread Ryan A
Hey,
First, sorry about the subject line, my mail program is giving me a bit of a
problem so had to use another..

--
[snip]
Let's try an experiment, do a string replace to get rid of the newline
and report back what happens.--I did a
this:$flick_name  = rtrim($row[5]);But no joy if I do a string
replace
how do I specify the newline in the needle parameter of the
str_replace?I'm
pretty sure I have to use chr() but not sure how...am looking at the
ascii
table now...Thanks!
[/snip]

http://www.php.net/str_replace

$new = str_replace(\n,  , $row[5]);

echo $new;-

Nope, that didnt work either so I manually re-entered each line (record)
and for some reason its working now

Thanks for your time and help.

Cheers!

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]

2005-11-15 Thread Curt Zirzow
On Mon, Nov 14, 2005 at 06:01:21PM -0400, Miles Thompson wrote:
 Can someone get rid of him?
 Every time I post, which I admit is not often, I get a bounce.

I put in a request to remove that email from the list, hopefully it
will get remove shortly.. i had to look in my gmail spam to find
that that adress is indeed responding back.

Curt.
-- 

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



[PHP] [EMAIL PROTECTED]

2005-11-14 Thread Miles Thompson

Can someone get rid of him?
Every time I post, which I admit is not often, I get a bounce.

Cheers - Miles

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php



Re: [PHP] [EMAIL PROTECTED]

2005-11-14 Thread Jasper Bryant-Greene

Miles Thompson wrote:

Can someone get rid of him?
Every time I post, which I admit is not often, I get a bounce.


Yeah, same. I think there was some discussion recently regarding it but 
I don't know what happened.


I even tried to go to www.xasamail.com and register an account ale0952 
just to stop the bounces, but it appears there is no way to sign up on 
that webmail site.


Jasper

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php