php-windows Digest 6 Nov 2002 16:18:08 -0000 Issue 1426
Topics (messages 16748 through 16753):
Re: expat extension
16748 by: Seung Hwan Kang
Problem/s connecting to Sybase
16749 by: Mark
Re: Subject: dynamic font
16750 by: neil smith
Re: PHP Editor
16751 by: Radovan Radic
16752 by: Maxim Maletsky
Re: Isapi Module
16753 by: erythros
Administrivia:
To subscribe to the digest, e-mail:
[EMAIL PROTECTED]
To unsubscribe from the digest, e-mail:
[EMAIL PROTECTED]
To post to the list, e-mail:
[EMAIL PROTECTED]
----------------------------------------------------------------------
--- Begin Message ---
As I remember, XML supports is default.
You do NOT have to do anything.
When you run phpinfo() it will show you whether you have already installed
or not.
//test.php
<? phpinfo(); ?>
"Terence ng" <[EMAIL PROTECTED]> wrote in message
news:20021106025232.7193.qmail@;web41115.mail.yahoo.com...
> Hi!
>
> I have installed PHP into Windows 2000 (IIS) by using
> PHP 4.2.2 installer that no external extensions
> included. Now, I need to use XML. What can I do to
> create XML parsers?
>
> Terence
>
> _________________________________________________________
> 1874(陳奕迅),再見露絲瑪莉(何韻詩),傷逝(葉倩文)...
> 越800首至新至Hit手機鈴聲!
> Over 800 latest ringtones, only on Yahoo!
> http://ringtone.yahoo.com.hk
--- End Message ---
--- Begin Message ---
Hi,
I have Sybase Central installed on my windows box as well as the apache
server running in the same environment and PHP4 with it which all works
great.
Problem here is that this problem has a history...
I innicially had alot of problems with my .dll's for establishing a database
connection now that thats fixed Apache restarts with no errors, great but
now i'm getting the following message:.
Warning: Sybase: Unable to allocate connection record in ...........
So I researched abit more and found that a sql.ini file must be refered to
and see what it says in the ini file's host name.
i.e
(CONFILE)
DBHost : (the name that appears in the sql.ini file) # The host the
database resides on
DBName : mytodb # The name of the database
DBUser : moofasa # The User to access the db
DBPass : # The user's password
I can't find the sql.ini file anywhere and even if i did where must it
reside ???
Please can I get some assistance regarding this.
Thanks
--- End Message ---
--- Begin Message ---
Hi -
Really it doesnt make sense to do this using PHP. CSS (cascading
stylesheets) provide all that is required to offer different font sizes.
You can use a simple bit of javascript which detects the users screen
resolution, and then use document.write to write out a style sheet link
suited to your users screen.
One stylesheet might contain
P {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size : 12px;
}
One for a bigger screen might have
P {
font-family: Geneva, Arial, Helvetica, sans-serif;
font-size : 14px;
}
Just save the file as style1.css the second as style2.css then :
<script language="javascript1.2">
if (screen.width > 640) {
document.write('<link rel="stylesheet" href="style1.css">');
// Suit screen size 640 px
} else {
document.write('<link rel="stylesheet" href="style2.css">');
// Suit screen size 800px or greater
}
</script>
Obviously, you can add all sorts of styles - TD cells might have different
font sizes and font families again, so in our stylesheet use
TD {
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
}
etc etc
Hope that helps.
Best regards,
Neil Smith.
At 02:52 06/11/2002 +0000, you wrote:
Message-ID: <[EMAIL PROTECTED]>
Date: Tue, 05 Nov 2002 10:20:45 +0100
From: Franco Pozzer <[EMAIL PROTECTED]>
Subject: dynamic font
I want to calibrate/balance dinamically the font size of my application in the
html tag depending of the resolution screen.
Example if I have 800x600 I must be to use a font size or if I have 1024x766
another font size.
Have you same idea to resolve this my problems?? Sameone have a sample
code for
me???
Thanks again for all.
www.infocamere.it
[EMAIL PROTECTED]
--- End Message ---
--- Begin Message ---
Hi
We could use some url for this editor, pls?
Radovan
"Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message
news:20021105082844.78910.qmail@;pb1.pair.com...
> If you looking for a small size editor (about 1MB), Editplus should be ok.
> It support all syntax highlights for commonly known open-source languages,
> JSP, XML, PHP and ASP, HTML, XSLT etc.,
>
> "Mgr. Brian Kabela" <[EMAIL PROTECTED]> wrote in message
> news:20021104212527.6016.qmail@;pb1.pair.com...
> > Is there a Editor for PHP? I don't know that much about PHP, I just
> > installed it today, and looked at some code, but i can't finda editor
for
> > it. I am runnign PHP 4 on Windows 2000 Server
> >
> > Thanks.
> >
> > Brian Kabela
> >
> >
>
>
--- End Message ---
--- Begin Message ---
Edit Plus is probably the best an simplest.
--
Maxim Maletsky
[EMAIL PROTECTED]
"Radovan Radic" <[EMAIL PROTECTED]> wrote... :
> Hi
>
> We could use some url for this editor, pls?
>
> Radovan
>
> "Seung Hwan Kang" <[EMAIL PROTECTED]> wrote in message
> news:20021105082844.78910.qmail@;pb1.pair.com...
> > If you looking for a small size editor (about 1MB), Editplus should be ok.
> > It support all syntax highlights for commonly known open-source languages,
> > JSP, XML, PHP and ASP, HTML, XSLT etc.,
> >
> > "Mgr. Brian Kabela" <[EMAIL PROTECTED]> wrote in message
> > news:20021104212527.6016.qmail@;pb1.pair.com...
> > > Is there a Editor for PHP? I don't know that much about PHP, I just
> > > installed it today, and looked at some code, but i can't finda editor
> for
> > > it. I am runnign PHP 4 on Windows 2000 Server
> > >
> > > Thanks.
> > >
> > > Brian Kabela
> > >
> > >
> >
> >
>
>
>
> --
> PHP Windows Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
--- End Message ---
--- Begin Message ---
im using it with apache 1.3.27 and winxp, no probs.
"Jack Kelly Dobson" <[EMAIL PROTECTED]> wrote in message
news:20021105151623.16303.qmail@;pb1.pair.com...
> I've been using it and MySQL under W2k for about a month now with no
> problems.
>
> j-
>
> "Charles P. Killmer" <[EMAIL PROTECTED]> wrote in message
> news:B141BE87473AA64FB24370C43CEA54BD011B45@;ngexbe1.my-netgain.com...
> Is anyone using 4.2.3 as an ISapi module?
>
> All the documentation still says unstable but it hasnt changed in years.
Is
> it now stable?
>
> Thanks
> Charles Killmer
> Windows 2000 Server IIS 5.0 PHP 4.2.2
>
>
--- End Message ---