Re: [PHP] [php] static html search engine for php static html site

2011-12-29 Thread Tamara Temple
Ashley Sheridan a...@ashleysheridan.co.uk wrote: Please don't top post. Wonder if said poster understands what that means -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

Re: [PHP] [php] static html search engine for php static html site

2011-12-27 Thread Nathan Nobbe
On Mon, Dec 26, 2011 at 6:17 AM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. not sure if it's come up yet, but this might work for you, http://www.sphider.eu/ it's

[PHP] [php] static html search engine for php static html site

2011-12-26 Thread HELP LINE
Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. thanks Izod duwa

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread Benjamin Hawkes-Lewis
On Mon, Dec 26, 2011 at 1:17 PM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine cannot itself be static, since it has to process variable user input. Though

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread HELP LINE
, 2011 at 1:17 PM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine cannot itself be static, since it has to process variable user input. Though I guess you

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread Ashley Sheridan
...@googlemail.com wrote: On Mon, Dec 26, 2011 at 1:17 PM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine cannot itself be static, since it has to process

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread Izo duwa
bhawkesle...@googlemail.com wrote: On Mon, Dec 26, 2011 at 1:17 PM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine cannot itself be static, since it has

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread Ashley Sheridan
:33 PM, Benjamin Hawkes-Lewis bhawkesle...@googlemail.com wrote: On Mon, Dec 26, 2011 at 1:17 PM, HELP LINE izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine

Re: [PHP] [php] static html search engine for php static html site

2011-12-26 Thread Izo duwa
izod...@gmail.com wrote: Does any know of a better static search engine that i can integrate to my static php html site. it should not be Google or yahoo bing. A search engine cannot itself be static, since it has to process variable user input. Though I guess you could generate

[PHP] PHP in HTML code

2010-03-12 Thread Martine Osias
An HTML/PHP code migrated to a different hosting platform seems to behave differently. The PHP statements within HTML fields or within tables does not execute PHP within table: tr td align=left?=laquo;.$_SESSION['scripture_text'].raquo;?/td /tr This PHP code doesn't print in the HTML page

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-06 Thread Michael A. Peters
Ashley Sheridan wrote: Bit of advice though, don't use Javascript to submit a form. Firstly, Javascript isn't available on all browsers, and on those it is available on, not everyone has it turned on. The W3C has the stats for Javascript being unavailable in a browser at about 5%. Yup. Just

[PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Mary Anderson
Hi, I am writing code in PHP which generates HTML script. My app is fairly complex. Twice in the development of the application I have run into a problem with submit buttons which pick up the wrong url. Instead of call the url for that submit button, it appears to call the url

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Joseph Thayne
'; document.display_data.submit(); } Example submit button: button name='edit_existing_query_form' onClick=javascript:retrieveAllPerm(); Revise query/button Joseph Mary Anderson wrote: Hi, I am writing code in PHP which generates HTML script. My app is fairly complex. Twice in the development

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Ashley Sheridan
=permpg_query_form_id=518query_form_schema=permanent_queries'; document.display_data.submit(); } Example submit button: button name='edit_existing_query_form' onClick=javascript:retrieveAllPerm(); Revise query/button Joseph Mary Anderson wrote: Hi, I am writing code in PHP which

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Joseph Thayne
button: button name='edit_existing_query_form' onClick=javascript:retrieveAllPerm(); Revise query/button Joseph Mary Anderson wrote: Hi, I am writing code in PHP which generates HTML script. My app is fairly complex. Twice in the development of the application I have run into a problem

Re: [PHP] PHP generated HTML has submit button which picks up the wrong url.

2010-02-05 Thread Robert Cummings
Joseph Thayne wrote: What you maybe ought to consider is using several submit buttons, and give each a name and a value. That way, your PHP script can check for a specifically named variable sent from the form. That way, you keep many people happy, and your site still works perfectly. The

Re: [PHP] Php generated html email

2007-10-23 Thread Richard Heyes
Ronald Wiplinger wrote: How can I create a html email directly from a web page via Php? The page will include tables, background colors and pictures within the tables. The received email should be readable without Internet connection (pictures, must be sent with the email)

[PHP] Php generated html email

2007-10-22 Thread Ronald Wiplinger
How can I create a html email directly from a web page via Php? The page will include tables, background colors and pictures within the tables. The received email should be readable without Internet connection (pictures, must be sent with the email) bye Ronald -- PHP General Mailing List

RE: [PHP] Php generated html email

2007-10-22 Thread Jay Blanchard
[snip] How can I create a html email directly from a web page via Php? The page will include tables, background colors and pictures within the tables. The received email should be readable without Internet connection (pictures, must be sent with the email) [/snip] Google is your friend...

[PHP] PHP and HTML Conventions

2004-07-12 Thread Harlequin
Hi all. I just wondered if the general convention was to use entirely PHP and simply encase HTML TAGs within that or use a mix and simply use PHP TAGs when required. -- - Michael Mason Arras People www.arraspeople.co.uk - -- PHP

Re: [PHP] PHP and HTML Conventions

2004-07-12 Thread Matthew Sims
Hi all. I just wondered if the general convention was to use entirely PHP and simply encase HTML TAGs within that or use a mix and simply use PHP TAGs when required. -- - Michael Mason I'm trying to get myself to use PHP tags when required. When I first

[PHP] PHP to HTML

2003-12-08 Thread Steve Marquez
Greetings! Is there a way to have PHP write an HTML file? What I would like to do is have a user fill out a form, then have the information write an HTML file and then save the file either for the first time, or overwrite the existing one. I hope this makes sense. Can anyone help? -- Steve

RE: [PHP] PHP to HTML

2003-12-08 Thread Chris W. Parker
Steve Marquez mailto:[EMAIL PROTECTED] on Monday, December 08, 2003 12:28 PM said: Greetings! Hi. Is there a way to have PHP write an HTML file? Yes. Start here http://us2.php.net/manual/en/function.fwrite.php. Chris. -- Don't like reformatting your Outlook replies? Now there's relief

Re: [PHP] PHP to HTML

2003-12-08 Thread Chris Shiflett
--- Steve Marquez [EMAIL PROTECTED] wrote: Is there a way to have PHP write an HTML file? Sure. This is no different from writing any other file. If you want it to write a file instead of outputting the content, a convenient way (my opinion) of doing this is to use ob_start() at the top of your

[PHP] PHP process .html extension file

2003-11-17 Thread BennyYim
PHP server will interpret .php extension files (index.php) as default. What should I set if I want the PHP server also interpret .html files (e.g. index.html) before send to client? Thank You ! .---. | Message Posted by NewsgroupXplorer| | http

Re: [PHP] PHP process .html extension file

2003-11-17 Thread Jason Wong
On Monday 17 November 2003 18:03, BennyYim wrote: PHP server will interpret .php extension files (index.php) as default. What should I set if I want the PHP server also interpret .html files (e.g. index.html) before send to client? If using apache: AddType application/x-httpd-php .php

[PHP] PHP 4.3.2, HTML and MSSQL2000

2003-11-07 Thread Rique Gresham
Hi All, I'm having trouble with a input box disappearing when using php to generate the input box. I tested this script in a test.htm and worked fine. Does it have something to do with the script being inside the div/div statement? Any help would be appreciated. Thanks div id=Oobj220

RE: [PHP] PHP 4.3.2, HTML and MSSQL2000

2003-11-07 Thread Jay Blanchard
[snip] Does it have something to do with the script being inside the div/div statement? div id=Oobj220 style=position:absolute;z-index:74;visibility:visible; left:612px;top:96px;width:110px;height:21px; span id=Ggeo201 class=dfltt ?php echo input type=text name=reportnum size=20 value=$reportnum;

[PHP] php convert html to pdf

2003-10-13 Thread hycn office
hi all ~ where can find the free of charge complete script ? remarks : i am using web hosting , so cant install anything thank you -_- -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RES: [PHP] PHP/JavaScript/HTML

2003-08-18 Thread Mauricio
Perfect! That's all I had to do. Thanks! Maurício -Mensagem original- De: CPT John W. Holmes [mailto:[EMAIL PROTECTED] Enviada em: terça-feira, 5 de agosto de 2003 16:30 Para: Mauricio; [EMAIL PROTECTED] Assunto: Re: [PHP] PHP/JavaScript/HTML From: Mauricio [EMAIL PROTECTED

Re: [PHP] PHP/JavaScript/HTML

2003-08-14 Thread Mauricio
John W. Holmes [EMAIL PROTECTED] To: Mauricio [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Tuesday, August 05, 2003 10:05 AM Subject: Re: [PHP] PHP/JavaScript/HTML From: Mauricio [EMAIL PROTECTED] I wrote a JavaScript to set the values of a Select html object by client side. The values are copied

[PHP] PHP/JavaScript/HTML

2003-08-05 Thread Mauricio
Hello folks I wrote a JavaScript to set the values of a Select html object by client side. The values are copied from another Select that I create getting the values from the database. After the user set the values he/she wants to add it in another form, for example, then press submit button, the

Re: [PHP] PHP/JavaScript/HTML

2003-08-05 Thread CPT John W. Holmes
From: Mauricio [EMAIL PROTECTED] I wrote a JavaScript to set the values of a Select html object by client side. The values are copied from another Select that I create getting the values from the database. After the user set the values he/she wants to add it in another form, for example, then

Re: [PHP] PHP/JavaScript/HTML

2003-08-05 Thread CPT John W. Holmes
From: Mauricio [EMAIL PROTECTED] On the Address Bar I can see: index.php?slcAdd=1slcAdd=2slcAdd=3 But when I get the value using $HTTP_GET_VARS['slcAdd']; it returns just the last value. What can I do to get them all? Name your select box as slcAdd[] and you'll have all of the values in an

[PHP] PHP suexec: html files as PHP.

2003-07-29 Thread Joan McGalliard
, they send me a URL that has no connection with my problem. So it's pretty simple, I want to know how to get html files parsed as PHP files with PHP Suexec on. IE I want: http://www.mcgalliard.org/index.html to look like http://www.mcgalliard.org/index.html thanks for any help! joan -- Joan

Re: [PHP] PHP suexec: html files as PHP.

2003-07-29 Thread Curt Zirzow
suggestions, and when I ask for detailed instructions, they send me a URL that has no connection with my problem. This is a problem you should take up to the hosting company, you shouldn't really use php suexec for regular php files anyway. So it's pretty simple, I want to know how to get html

[PHP] php and html differences

2003-03-02 Thread Sunfire
hi.. i guess this is a php related question (well sort of) the person i work with decided that he was going to edit a few of my php scripts that make a web page out of variables and just different conditions that happen in the script.. he thought that he could use a gui html editor and edit the

Re: [PHP] php and html differences

2003-03-02 Thread Sunfire
to know if i have layout problems or if the guy is taking his sight for granted... tnx - Original Message - From: Darren Young [EMAIL PROTECTED] To: 'Sunfire' [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 3:22 PM Subject: RE: [PHP] php and html differences No, there are no test

Re: [PHP] php and html differences

2003-03-02 Thread Leif K-Brooks
If I was you, I would tell him he's insane. Sunfire wrote: hi.. i guess this is a php related question (well sort of) the person i work with decided that he was going to edit a few of my php scripts that make a web page out of variables and just different conditions that happen in the script..

Re: [PHP] php and html differences

2003-03-02 Thread Sunfire
Message - From: Larry Brown [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 3:32 PM Subject: RE: [PHP] php and html differences 3 or more possible pages from one php page is what php was designed for. It dynamically creates the page depending on what choices

Re: [PHP] php and html differences

2003-03-02 Thread Sunfire
already did that.. he even said whats new... *fear that* if i work for someone like that?? hrm... - Original Message - From: Leif K-Brooks [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 3:55 PM Subject: Re: [PHP] php and html

Re: [PHP] php and html differences

2003-03-02 Thread Ernest E Vogelsinger
At 21:25 02.03.2003, Sunfire said: [snip] i guess this is a php related question (well sort of) the person i work with decided that he was going to edit a few of my php scripts that make a ... oh my god. he told me a few things that i dont quite

Re: [PHP] php and html differences

2003-03-02 Thread Ernest E Vogelsinger
At 21:54 02.03.2003, Sunfire said: [snip] well i told him it was probably java or something of the sort cuz he uses java in his pages sometimes expecially when it comes to buttons or something right, you can do some logic with JavaScript (don't confuse that

Re: [PHP] php and html differences

2003-03-02 Thread Sunfire
- Original Message - From: Ernest E Vogelsinger [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 5:58 PM Subject: Re: [PHP] php and html differences At 21:25 02.03.2003, Sunfire said: [snip] i

Re: [PHP] php and html differences

2003-03-02 Thread Jason Sheets
On Sun, 2003-03-02 at 16:55, Sunfire wrote: - Original Message - From: Ernest E Vogelsinger [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 5:58 PM Subject: Re: [PHP] php and html differences At 21:25 02.03.2003, Sunfire said

Re: [PHP] php and html differences

2003-03-02 Thread Sunfire
where could i get a templet editor from that is good and fairly easy to use? - Original Message - From: Jason Sheets [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 7:07 PM Subject: Re: [PHP] php and html differences On Sun, 2003-03-02

Re: [PHP] php and html differences

2003-03-02 Thread Jason Sheets
[EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Sunday, March 02, 2003 7:07 PM Subject: Re: [PHP] php and html differences On Sun, 2003-03-02 at 16:55, Sunfire wrote: - Original Message - From: Ernest E Vogelsinger [EMAIL PROTECTED] To: Sunfire [EMAIL PROTECTED] Cc: [EMAIL

Re: [PHP] php and html differences

2003-03-02 Thread Paul Nicholson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Use Smarty(http://smarty.php.net/) and Maguma Studio(http://www.maguma.com/). ~Paul On Sunday 02 March 2003 07:13 pm, Sunfire wrote: where could i get a templet editor from that is good and fairly easy to use? [snip] - -- ~Paul Nicholson Design

[PHP] .php to .html?

2002-09-29 Thread Jean-Christian Imbeault
I am using PHP 4.2.3 and Apache 1.3.26 When a user comes to one of my php pages it comes out has http:..ip/page.php How can I make my pages come out as .html instead of .php? Thanks! Jc -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php

RE: [PHP] .php to .html?

2002-09-29 Thread Peter Houchin
just save the files u create as .html make sure in your apache httpd.conf where you reference for .php that u have html in here as well and all will be sweet. eg in this line AddType application/x-httpd-php .php4 .php .htm .php3 .html anything you put in that line will be passed through php

Re: [PHP] .php to .html?

2002-09-29 Thread Jean-Christian Imbeault
Peter Houchin wrote: just save the files u create as .html make sure in your apache httpd.conf where you reference for .php that u have html in here as well and all will be sweet. eg in this line AddType application/x-httpd-php .php4 .php .htm .php3 .html Super! That helps *so* much

[PHP] php and html

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files

[PHP] php and html

2002-07-18 Thread Keith Roberts
I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html files

RE: [PHP] php and html

2002-07-18 Thread Jay Blanchard
[snip] I am running into a situation where I need some serious help. My environment is: Workstation - W2k, Frontpage Server - Cobalt RaQ4i, Linux, Apache Problem: I need to access MySQL to display inventory information on the web page. When I have modified the httpd.conf file to parse html

[PHP] PHP as HTML

2002-06-04 Thread Tom Ray
Hey there- I'm trying to use an .htaccess file to parse .php files as .html does anyone know how to do this? It doesn't work with the same structure as parsing the .shtml files. any suggestions would be great. -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit: http

Re: [PHP] PHP as HTML

2002-06-04 Thread Kevin Stone
AddType application/x-httpd-php .html AddType application/x-httpd-php .htm - Original Message - From: Tom Ray [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 04, 2002 2:41 PM Subject: [PHP] PHP as HTML Hey there- I'm trying to use an .htaccess file to parse .php files

Re: [PHP] PHP as HTML

2002-06-04 Thread Richard Heyes
Tom Ray [EMAIL PROTECTED] wrote: I'm trying to use an .htaccess file to parse .php files as .html does anyone know how to do this? It doesn't work with the same structure as parsing the .shtml files. Assuming you're using the module version, add this into your .htaccess file

Re: [PHP] PHP as HTML

2002-06-04 Thread Tom Ray
I tried this, and it just prompts me to download the file from the server. I can't see what the issue is. - Original Message - From: Kevin Stone [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 04, 2002 5:35 PM Subject: Re: [PHP] PHP as HTML AddType application/x-httpd-php

RE: [PHP] PHP as HTML

2002-06-04 Thread Peter
Tom, this does work fine... doing what Kevin says... ie the AddType application/x-httpd-php .html AddType application/x-httpd-php .htm is PHP installed as a module or cgi ver? Cheers -Original Message- From: Tom Ray [mailto:[EMAIL PROTECTED]] Sent: Wednesday, 5 June 2002 9:49 AM

Re: [PHP] PHP as HTML

2002-06-04 Thread Tom Ray
you know, that's a good question. How would I determine that on the server? Peter wrote: Tom, this does work fine... doing what Kevin says... ie the AddType application/x-httpd-php .html AddType application/x-httpd-php .htm is PHP installed as a module or cgi ver? Cheers -Original

Re: [PHP] PHP as HTML

2002-06-04 Thread Pushkar Pradhan
If you do a phpinfo() you get a columen Server API, mine lists CGI as it is what I installed php as. you know, that's a good question. How would I determine that on the server? Peter wrote: Tom, this does work fine... doing what Kevin says... ie the AddType application/x-httpd-php .html

Re: [PHP] PHP as HTML

2002-06-04 Thread Tom Ray
as. you know, that's a good question. How would I determine that on the server? Peter wrote: Tom, this does work fine... doing what Kevin says... ie the AddType application/x-httpd-php .html AddType application/x-httpd-php .htm is PHP installed as a module or cgi ver? Cheers

RE: [PHP] PHP in HTML

2002-05-17 Thread Peter
I find it better than having every page go thru php not to mention quicker. -Original Message- From: Miguel Cruz [mailto:[EMAIL PROTECTED]] Sent: Friday, 17 May 2002 3:52 PM To: Peter Cc: [EMAIL PROTECTED] Subject: RE: [PHP] PHP in HTML On Fri, 17 May 2002, Peter wrote

RE: [PHP] PHP in HTML

2002-05-17 Thread Miguel Cruz
PROTECTED]] Sent: Friday, 17 May 2002 3:52 PM To: Peter Cc: [EMAIL PROTECTED] Subject: RE: [PHP] PHP in HTML On Fri, 17 May 2002, Peter wrote: there are also possible good reasons for sending .html files through php. like if you don't want users to know that your website is written

RE: [PHP] PHP in HTML

2002-05-17 Thread Peter
PROTECTED] Subject: RE: [PHP] PHP in HTML Do you really find it noticeable quicker? Benchmarks I've seen (none of them that current) don't seem to support that. Depending on the software versions involved, it seems to be anywhere from much faster through PHP to a few % slower. Certainly no major

[PHP] PHP in HTML

2002-05-16 Thread Jeremy
Hi Folks, A simple question that has me puzzled, obviously I have a config file wrong somewhere.. Why does a filename.php file run as php and a filename.html with php code embedded not produce a php result? cheers, Jeremy Burton Senior Consultant PERTH TOURIST LOUNGE Level 2 Carillon City

Re: [PHP] PHP in HTML

2002-05-16 Thread Justin French
. .html for HTML, .php for PHP, all is well. Justin French on 17/05/02 12:14 PM, Jeremy ([EMAIL PROTECTED]) wrote: Hi Folks, A simple question that has me puzzled, obviously I have a config file wrong somewhere.. Why does a filename.php file run as php and a filename.html with php code

RE: [PHP] PHP in HTML

2002-05-16 Thread Peter
if your using apache for you web server .. in httpd.conf you can set it so you have the following config.. (this is on windows but same basically applies to other OS's) LoadModule php4_module c:/phpdev/php/sapi/php4apache.dll AddType application/x-httpd-php .php .html this will enable .html

Re: [PHP] PHP in HTML

2002-05-16 Thread Jerome Houston
yeah, just find in your web server where to tell it what kind of files to send through php. there are also possible good reasons for sending .html files through php. like if you don't want users to know that your website is written in php. -jerome Original Message Follows From

RE: [PHP] PHP in HTML

2002-05-16 Thread Peter
snip there are also possible good reasons for sending .html files through php. like if you don't want users to know that your website is written in php. -jerome /snip a better way to do that would be to make up your own extension so instead of having your server use .php for php files make

Re: [PHP] PHP in HTML

2002-05-16 Thread Jason Wong
On Friday 17 May 2002 13:33, Jerome Houston wrote: yeah, just find in your web server where to tell it what kind of files to send through php. there are also possible good reasons for sending .html files through php. like if you don't want users to know that your website is written in php

RE: [PHP] PHP in HTML

2002-05-16 Thread Miguel Cruz
On Fri, 17 May 2002, Peter wrote: there are also possible good reasons for sending .html files through php. like if you don't want users to know that your website is written in php. a better way to do that would be to make up your own extension so instead of having your server use .php

[PHP] PHP and HTML

2002-05-15 Thread Alia Mikati
Hi everybody Plz can u help me with this? I have an html file that diplays images. And I want to use PHP to parse this file: i.e. to display those images and their sources. How can this be done? Thx a lot Alia -- PHP General Mailing List (http://www.php.net/) To unsubscribe, visit:

[PHP] php and html image tag...

2002-04-08 Thread Jas
Ok here is my problem, I have a piece of code that queries the database pulls the results of a table into an array, on another file the results of that array are used with a require function and then each variable is echoed to the screen where I need it, I have a piece of javascript to open a pop

[PHP] PHP from HTML

2002-04-07 Thread Matja¾ Prtenjak
HI, Is this possible? SERVER1 with PHP some file with name xTest.php xTest.php: ? echo(Hi from SERVER1); ? SERVER2 without PHP some file with name file1.html file1.html: html body Server1 is saying : ? /body /html How can I make HTML file (on SERVER2) say 'Server1 is saying :

[PHP] PHP from HTML

2002-04-07 Thread Matja¾ Prtenjak
HI, Is this possible? SERVER1 with PHP some file with name xTest.php xTest.php: ? echo(Hi from SERVER1); ? SERVER2 without PHP some file with name file1.html file1.html: html body Server1 is saying : ? /body /html How can I make HTML file (on SERVER2) say 'Server1 is saying :

[PHP] PHP driven HTML-web front end software tools

2002-01-16 Thread Dennis Gearon
I'm slowly working on a PHP driven, html-web front end state machine design tool. It uses an XML repository for the data, and renders a PHP file for execution. It is good for moderate sized scripts and even better for designing the inside of objects. It would be a perfect compliment to a UML

[PHP] PHP outside HTML

2001-12-05 Thread John Kolvereid
Hi, I'm a little confused. I see the advantage of PHP within HTML. However, a few of the examples of ECHO include the '\n' char. Since this is not valid within HTML, I conclude they are addressing this for OUTSIDE HTML. Please advise. Thanks. -- John Kolvereid http

Re: [PHP] PHP outside HTML

2001-12-05 Thread Tyler Longren
outside HTML Hi, I'm a little confused. I see the advantage of PHP within HTML. However, a few of the examples of ECHO include the '\n' char. Since this is not valid within HTML, I conclude they are addressing this for OUTSIDE HTML. Please advise. Thanks. -- John Kolvereid

RE: [PHP] PHP outside HTML

2001-12-05 Thread Martin Towell
it's so it's easier to read the output -Original Message- From: John Kolvereid [mailto:[EMAIL PROTECTED]] Sent: Thursday, December 06, 2001 5:24 PM To: [EMAIL PROTECTED] Subject: [PHP] PHP outside HTML Hi, I'm a little confused. I see the advantage of PHP within HTML. However

Re: [PHP] PHP outside HTML

2001-12-05 Thread David Robley
On Thu, 6 Dec 2001 16:54, John Kolvereid wrote: Hi, I'm a little confused. I see the advantage of PHP within HTML. However, a few of the examples of ECHO include the '\n' char. Since this is not valid within HTML, I conclude they are addressing this for OUTSIDE HTML. Please advise

Re: [PHP] PHP outside HTML

2001-12-05 Thread Michael A. Peters
On Wed, 05 Dec 2001 22:24:08 -0800 John Kolvereid [EMAIL PROTECTED] mentioned: Hi, I'm a little confused. I see the advantage of PHP within HTML. However, a few of the examples of ECHO include the '\n' char. Since this is not valid within HTML, I conclude they are addressing

[PHP] PHP within .html files

2001-08-16 Thread Paul S.
My UNIX apache server that I host from seems to be preset to execute PHP code within html docs. That is, a php require statement within a .html file is included, executed, and sent to the browser. Is this unusual? or standard? I ask because I would hope not to become dependent on including php

RE: [PHP] PHP within .html files

2001-08-16 Thread Jon Haworth
-httpd-php .php .html You can put as many extensions as you like in there, for example: AddType application/x-httpd-php .php .php3 .php4 .html .phtml .foo .bar .baz .xyzzy Although this is probably overkill :-) HTH Jon -Original Message- From: Paul S. [mailto:[EMAIL PROTECTED]] Sent

[PHP] php in html-- what gives?

2001-07-24 Thread CGI GUY
I'm trying to test the following: I have created a simple cookie script: ?php if (!IsSet($session)) { $cookievalue = md5(uniqid(rand())); setcookie('session', $cookievalue, mktime (8,0,0,7,31,2001)); } else { mail([EMAIL PROTECTED], cookie, $session); } ? I have placed it in an html page, at

Re: [PHP] php in html-- what gives?

2001-07-24 Thread Ben Bleything
Put it in a .php file. Your webserver probably doesn't interpret PHP in HTML files (as is proper). If it MUST be in a HTML file, you'll have to set up your webserver to interpret php in html files... that process depends on your webserver. Ben On Tue, 24 Jul 2001, CGI GUY wrote: I'm trying