Re: [PHP] PHP page source charset

2011-12-20 Thread Rick Dwyer
On Dec 20, 2011, at 1:32 PM, Jim Lucas wrote: On 12/19/2011 6:44 PM, Rick Dwyer wrote: Hello all. When I set my page charset from iso-8859-1 to utf-8, when I run it through the W3C validator, the validator returns an error that it can't validate the page because of an illegal character n

Re: [PHP] PHP page source charset

2011-12-20 Thread Jim Lucas
On 12/19/2011 6:44 PM, Rick Dwyer wrote: > Hello all. > > When I set my page charset from iso-8859-1 to utf-8, when I run it through the > W3C validator, the validator returns an error that it can't validate the page > because of an illegal character not covered by UTF-8. > > > "Sorry, I am unab

Re: [PHP] PHP page source charset

2011-12-19 Thread Benjamin Hawkes-Lewis
On Tue, Dec 20, 2011 at 2:44 AM, Rick Dwyer wrote: > When I set my page charset from iso-8859-1 to utf-8 Set it how? http://www.w3.org/International/O-HTTP-charset.en.php , when I run it through > the W3C validator, the validator returns an error that it can't validate the > page because of an

[PHP] PHP page source charset

2011-12-19 Thread Rick Dwyer
Hello all. When I set my page charset from iso-8859-1 to utf-8, when I run it through the W3C validator, the validator returns an error that it can't validate the page because of an illegal character not covered by UTF-8. "Sorry, I am unable to validate this document because on line 199

Re: [PHP] php - page flow issue...

2010-03-14 Thread Rene Veerman
sounds like you want to build an ajax site with global config settings per subpart(=functionality) for each browser-client. if it got it right your other requirements are; - you have run-time config/state settings per subpart instance that other subparts' instances need to access. - you want to be

[PHP] php - page flow issue...

2010-03-14 Thread bruce
hi. got a situation for a potential page that i'm playing with. i'm trying to figure out how to implement it, and the best/good approach to this. i'm actually considering integrating this kind of process within a cms (joomla/mambo/cmsms/etc..) but right now, this is in the initia thought stage...

Re: [PHP] PHP page completly blank

2008-08-03 Thread Alain Roger
Ok i "found" where was the problem. basically when i install php 5.2.6 with installer.msi, i must after copy over those files, the content of the "php-5.2.6-Win32.zip" file, because several files and links are not installed / done by the installer.msi :-( just try to install it with default setting

Re: [PHP] PHP page completly blank

2008-08-03 Thread Daniel Brown
On Sun, Aug 3, 2008 at 3:54 AM, Alain Roger <[EMAIL PROTECTED]> wrote: > > when under command line i run php -v i get a lot of error messages, like > those 2 as attached files. > what can it be ? i've checked those files and they exist. :-( Attached files are stripped automatically by mailman

[PHP] PHP page completly blank

2008-08-03 Thread Alain Roger
Hi, i reinstalled on my computer (Win XP) PHP 5.2.4 (but the same happens with 5.2.6). when i run an index.php page or any other php page which works well before, now i get a blank page result on my browser without any error message. even if only HTML code is inside the PHP page nothing is display

Re: [PHP] php page scrapping challenge!

2008-05-04 Thread paragasu
On Mon, May 5, 2008 at 12:06 PM, Craige Leeder <[EMAIL PROTECTED]> wrote: > Hey Paragasu, > > Sounds like fun, though not really that difficult. It is a very > horrible site, but it shouldnt' take that much to create the script > for. They do not, in-fact, use Javascript to pull the movie times

Fwd: [PHP] php page scrapping challenge!

2008-05-04 Thread Craige Leeder
Hey Paragasu, Sounds like fun, though not really that difficult. It is a very horrible site, but it shouldnt' take that much to create the script for. They do not, in-fact, use Javascript to pull the movie times from the database. They reload the page with the added querystring variables (for

[PHP] php page scrapping challenge!

2008-05-04 Thread paragasu
well, this going to be fun. the website i am trying to scrapped is http://www.cathayholdings.com.my/ it is a movie cinema website with very irritating design. They really tried to imposed the security to the point it is really not user friendly. The whole website written in asp. I really hate to

Re: [PHP] PHP page counter

2005-09-11 Thread Vedanta Barooah
there is one here : http://www.phpclasses.org/browse/package/2212.html see if it suffices your need, thanks, vedanta On 9/11/05, Michelle Konzack <[EMAIL PROTECTED]> wrote: > G'Morning *, > > Does anyone know, where I can get a PHP-Code for > a high performance page counter ? > > I need one, whi

[PHP] PHP page counter

2005-09-11 Thread Michelle Konzack
G'Morning *, Does anyone know, where I can get a PHP-Code for a high performance page counter ? I need one, which can handle very high traffic (15.000 Hits/h) becase my own one sucks (locking). :-/ It can be text/plain or php-gd based. Greetings Michelle -- Linux-User #280138 with the Linux

RE: [PHP] PHP page memory usage

2004-07-06 Thread Michael Sims
Michael Gale wrote: > Hello, > > Is there a way to monitor or test out how much CPU / memory a php > page uses ? I would like to find out how intensive some of my scripts > are. Don't know about CPU, but you can get memory usage with this function: http://www.php.net/manual/en/function.me

[PHP] PHP page memory usage

2004-07-06 Thread Michael Gale
Hello, Is there a way to monitor or test out how much CPU / memory a php page uses ? I would like to find out how intensive some of my scripts are. Thanks. Michael -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

[PHP] PHP page caching issue

2003-08-20 Thread Tom Tsongas
Hi folks. I have an interesting problem with regards to some PHP pages of mine. Basically, I have a form page where the user is able to use list menus, pulldowns, and textfields to enter certain data as part of a mechanism for running a query against our database. Once the user runs the query,

Re: [PHP] PHP Page Refresh on Redirection

2003-01-28 Thread Maxim Maletsky
make sure that new page's headers do not cache. See www.php.net/header for examples. -- Maxim Maletsky [EMAIL PROTECTED] "Phil" <[EMAIL PROTECTED]> wrote... : > I have a PHP page with a form that submits to another PHP processing page. > On completion of the PHP actions on the processing pag

Re: [PHP] PHP Page Refresh on Redirection

2003-01-27 Thread Justin French
on 28/01/03 4:42 PM, Phil ([EMAIL PROTECTED]) wrote: > I have a PHP page with a form that submits to another PHP processing page. > On completion of the PHP actions on the processing page, I have echoed into > the page the javascript action of 'location.href=...' and the location is > redirected t

RE: [PHP] PHP Page Refresh on Redirection

2003-01-27 Thread John W. Holmes
> I have a PHP page with a form that submits to another PHP processing page. > On completion of the PHP actions on the processing page, I have echoed > into > the page the javascript action of 'location.href=...' and the location is > redirected to the PHP form page that starting the process. Both

[PHP] PHP Page Refresh on Redirection

2003-01-27 Thread Phil
I have a PHP page with a form that submits to another PHP processing page. On completion of the PHP actions on the processing page, I have echoed into the page the javascript action of 'location.href=...' and the location is redirected to the PHP form page that starting the process. Both pages take

Re: [PHP] Php page runs from one computer but not another

2002-08-19 Thread Jaskirat Singh
Hi, "I can run the same page on the machine with the problem if I simply rename it." If you could tell what the name was when it didn't work and what when it worked. If by rename you mean change of extension like say from php3 to php then it indicates that apache config file (I am not sure f

[PHP] Php page runs from one computer but not another

2002-08-19 Thread Jonathan Black
Hello, php 4.2.1 Internet Explorer 6. After some server upgrades at my webhoster I can see the phpinfo page from a computer running windows 98, but not from another computer running windows 2000 server. Here I just see the php code in my browser. I can run the same page on the machine with the p

Re: [PHP] Php page

2001-08-09 Thread Pavel Jartsev
Wee Chua wrote: > > Hi all, > what is the best software to make banner ads? Are there any free or > evaluation trail available? I want to make the banner ads on my PHP page. > Thank you. > > Calvin Chua Maybe this helps you a little: http://freshmeat.net/search/?site=Freshmeat&q=php+banner§ion

[PHP] Php page

2001-08-09 Thread Wee Chua
Hi all, what is the best software to make banner ads? Are there any free or evaluation trail available? I want to make the banner ads on my PHP page. Thank you. Calvin Chua -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-

[PHP] PHP page will not load at all

2001-07-19 Thread Dave_
I had a few problems installing php but finally got it, Apache and MySql installed. Or so I thought. The first time I tried to open a sample php page, I got the error saying I was missing odbc32.dll. So, I went ahead and put a copy of the dll where it belonged so, it should work now right? Wron