[PHP] PHP Question

2010-10-28 Thread Paulo Work
Hello my name is Paulo Carvalho and I am struggling with the following: I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per slide. ex:(li pcomment

Re: [PHP] PHP Question

2010-10-28 Thread Kevin Kinsey
Paulo Work wrote: Hello, Paulo! I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per slide. ex:(li pcomment 1/p pcomment 1/p pcomment 1/p /li) I am

Re: [PHP] PHP Question

2010-10-28 Thread Jim Lucas
Paulo Work wrote: Hello my name is Paulo Carvalho and I am struggling with the following: I am building a website with basic CMS functionality. My problem is that in one of the pages I am using Easyslider to display small comments about the clients. These comments are divided in 3 per

[PHP] [php] Question about jsmin-php code

2009-12-29 Thread hack988 hack988
I'm see some code from jsmin-php like follow: ?php error_reporting(E_STRICT); fwrite(STDERR, memory_get_peak_usage(true).\n); require './jsmin.php'; echo JSMin::minify(file_get_contents('ext-all-debug.js')); fwrite(STDERR, memory_get_peak_usage(true).\n); ? I have some question about code

Re: [PHP] [php] Question about jsmin-php code

2009-12-29 Thread Daniel Egeberg
On Tue, Dec 29, 2009 at 12:07, hack988 hack988 hack...@dev.htwap.com wrote: I have some question about code 1.what is E_STRICT error level mean?I'm found an explain at http://www.php.net/manual/en/errorfunc.constants.php but i don't understand which situation need this level? E_STRICT is an

[PHP] [php] question about ob_end_flush

2008-11-27 Thread jason liang
Hi all I am comfused about the function ob_end_flush.In the manual:This function will send the contents of the topmost output buffer (if any) and turn this output buffer off. i have made such tests. ?php ob_start(); echo hello word!; ob_end_flush(); ? this works alright.the script

Re: [PHP] [php] question about ob_end_flush

2008-11-27 Thread Robert Cummings
On Fri, 2008-11-28 at 12:01 +0800, jason liang wrote: Hi all I am comfused about the function ob_end_flush.In the manual:This function will send the contents of the topmost output buffer (if any) and turn this output buffer off. i have made such tests. ?php ob_start(); echo

RE: [PHP] PHP Question

2004-12-15 Thread Jay Blanchard
[snip] I am new to this languaue and need some info. I am not a programmer but I need some info for a project I am working on. I have data in MS Access and I want to create graphs and charts using this data to display on a website. I read on your website PHP is able to do this. What do I need to

Re: [PHP] PHP Question

2004-12-15 Thread Jason Wong
On Wednesday 15 December 2004 21:29, Jay Blanchard wrote: Do you reccommed MS Access or SQL for the database? It really doesn't matter unless you need a superior product. MS Access wasn't designed for concurrent access so if you are only serving *very* light loads it may suffice. If your

[PHP] PHP Question

2004-12-14 Thread CFDelBene
I am new to this languaue and need some info. I am not a programmer but I need some info for a project I am working on. I have data in MS Access and I want to create graphs and charts using this data to display on a website. I read on your website PHP is able to do this. What do I need to know

[PHP] php question

2004-08-17 Thread michael crane
hello, I have a webpage which includes a frame containing a table made of 24 tds which in turn contain little images. When the mouse clicks on a little image the appropriate larger image is loaded into an adjacent frame. Can somebody point me in the direction to do this in php without frames

Re: [PHP] php question

2004-08-17 Thread Matthew Sims
hello, I have a webpage which includes a frame containing a table made of 24 tds which in turn contain little images. When the mouse clicks on a little image the appropriate larger image is loaded into an adjacent frame. Can somebody point me in the direction to do this in php without frames

[PHP] php question... opening external page/writing to it...

2003-06-23 Thread my
Hey... A quick question... How can I do the following (I know it's simple..!!!) All from the same page... Do some processing... Open an external page Write some stuff to the external page... The issue I seem to have is that if I open the external page during the onload... it's not ready

RE: [PHP] php question... opening external page/writing to it...

2003-06-23 Thread Sævar Öfjörð
: 24. júní 2003 00:26 To: [EMAIL PROTECTED] Subject: [PHP] php question... opening external page/writing to it... Hey... A quick question... How can I do the following (I know it's simple..!!!) All from the same page... Do some processing... Open an external page Write some stuff

RE: [PHP] php question... opening external page/writing to it...

2003-06-23 Thread my
To: [EMAIL PROTECTED] Subject: RE: [PHP] php question... opening external page/writing to it... I don't know if this is what you mean, but here is what you need to edit files: http://us2.php.net/manual/en/function.fopen.php http://us2.php.net/manual/en/function.fwrite.php http://us2.php.net/manual/en

Re: [PHP] php question... opening external page/writing to it...

2003-06-23 Thread Justin French
on 24/06/03 10:26 AM, my ([EMAIL PROTECTED]) wrote: Do some processing... easy :) Open an external page I assume you mean open a window with another URL in it Write some stuff to the external page... Wrong order... 1. do some processing (eg home.php) 2. open/create a file (eg

[PHP] php question - query string

2003-01-30 Thread Anthony Ritter
The following script is from Kevin Yank's book on page 59-60. (Sitepoint) I'd like to get some clarification about the line: (almost next to last line in the script) ... echo(pa href='$PHP_SELF?addjoke=1'Add a Joke!/a/p); He has a link called Add a Joke!.

[PHP] PHP question

2002-12-17 Thread Tom Ray
Are PHP script supposed to run as the user or as the web server? Currently I'm running Red Hat 7.3 with apache 1.3.x and all my PHP scripts run as apache, not as the user. I'm wonder if I can run the scripts as the user and how do I fix this? Any help would be great! -- PHP General Mailing

Re: [PHP] PHP question

2002-12-17 Thread Joseph W. Goff
: Tom Ray [EMAIL PROTECTED] To: PHP List [EMAIL PROTECTED] Sent: Tuesday, December 17, 2002 1:11 PM Subject: [PHP] PHP question Are PHP script supposed to run as the user or as the web server? Currently I'm running Red Hat 7.3 with apache 1.3.x and all my PHP scripts run as apache

Re: [PHP] PHP question

2002-12-17 Thread 1LT John W. Holmes
Are PHP script supposed to run as the user or as the web server? Currently I'm running Red Hat 7.3 with apache 1.3.x and all my PHP scripts run as apache, not as the user. I'm wonder if I can run the scripts as the user and how do I fix this? As a module, that's the way it is. I think you can

Re: [PHP] PHP question

2002-12-17 Thread Joseph W. Goff
, December 17, 2002 1:18 PM Subject: Re: [PHP] PHP question You can set this up in the php.ini file in the /etc directory. You can set php to run an any user and any group that you have set up on your system. Just make sure that you set permissions properly so that it can function

Re: [PHP] PHP question

2002-12-17 Thread Sean Burlington
1LT John W. Holmes wrote: Are PHP script supposed to run as the user or as the web server? Currently I'm running Red Hat 7.3 with apache 1.3.x and all my PHP scripts run as apache, not as the user. I'm wonder if I can run the scripts as the user and how do I fix this? As a module, that's the

RE: [PHP] php question

2002-10-02 Thread Ford, Mike [LSS]
-Original Message- From: michael saxbury [mailto:[EMAIL PROTECTED]] Sent: 01 October 2002 22:57 I am trying to understand in deatil exactly what PHP is, I know that it is a scripting markup type language, but. Is it correct to say that PHP is essentially just C++ code

[PHP] php question

2002-10-01 Thread michael saxbury
I am trying to understand in deatil exactly what PHP is, I know that it is a scripting markup type language, but. Is it correct to say that PHP is essentially just C++ code wrapped in PHP blocks which are embedded in HTML? Thanks, Michael Saxbury

RE: [PHP] php question

2002-10-01 Thread John W. Holmes
I am trying to understand in deatil exactly what PHP is, I know that it is a scripting markup type language, but. Is it correct to say that PHP is essentially just C++ code wrapped in PHP blocks which are embedded in HTML? Well, more of a C/C++ syntax, actually. PHP has a lot of built

Re: [PHP] php question

2002-10-01 Thread Brad Bonkoski
Of course compiled versus interpreted code is a pretty major difference, so it would be hard for me to say it is like a compiled language like C/C++ just because is borrows some of the syntax. I have seen only very generic classifications, but IMHO I would lean more towards saying it is a

Re: [PHP] PHP question regarding Cold Fusion

2002-01-12 Thread Wandrer
At 09:43 PM 1/11/02 -0500, you wrote: The tag I am talking about is CFHTTP. This tag allows you to emulate the posting of a form, but also allows you to capture the results of the post. There are a couple of forms written in CF that connect to the merchant account, check a credit card, for

Re: [PHP] PHP question regarding Cold Fusion

2002-01-12 Thread [EMAIL PROTECTED]
I believe another option is the CURL library module for PHP. see manual: XII. CURL, Client URL Library Functions bvr. On Sat, 12 Jan 2002 09:01:39 -0500, Wandrer wrote: At 09:43 PM 1/11/02 -0500, you wrote: The tag I am talking about is CFHTTP. This tag allows you to emulate the posting of

[PHP] PHP question regarding Cold Fusion

2002-01-11 Thread Jeremy Reed
Cold Fusion, as far as I'm concerned, stinks. However, I have been involved in porting a website from Cold Fusion to PHP and during this transmogrification, I've come across something I'm not sure how to emulate in PHP. Perhaps if there are any CF/PHP gurus out there, they can help me out. The

Re: [PHP] PHP question regarding Cold Fusion

2002-01-11 Thread Rasmus Lerdorf
Google for something called PostToHost I wrote ages ago. Lots of variations of that around. Basically you just fsockopen() to the site in question and fputs() your request and POST data and then fgets() the result. -Rasmus On Fri, 11 Jan 2002, Jeremy Reed wrote: Cold Fusion, as far as I'm

Re: [PHP] PHP question regarding Cold Fusion

2002-01-11 Thread Philip Olson
On Fri, 11 Jan 2002, Rasmus Lerdorf wrote: Google for something called PostToHost I wrote ages ago. Lots of variations of that around. Basically you just fsockopen() to the site in question and fputs() your request and POST data and then fgets() the result. With one variation being