Test: cannot send mail, but can read.
Please ignore.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Hello everyone,
I'm using regular expression to extract all text within the tag.
With a BODY tag like
\\only interested in this line.
I use
eregi("( ) ",$str,$out);
\\spaces included, here, for easy reading.
echo "$out[0]";
However, this prints everything following (and including) the '
Hello everyone!
I'm trying to get the text inside the tag, using regular
expression.
$area = eregi('()',$str);
Where $str is the string containing
When I print $area, the string contains the entire content of $str. I
get something like:
.
.
.
__John Monfort_
=Testing=
Having trouble sending mail...
=Testing=
Please ignore.
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Test
Cannot submit to list.
Test
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]
Hello all,
I'm writing a PHP application that will run on a cd-rom. I have two
questions:
1) Apache Server
I wanted to add the apache server on the disk. What are the minimum
files that I need, for apache to run? i.e.
apache.exe
httpd.conf
etc.
2) Configuration File PAT
Has anyone here worked with the Mercantec Merchant Account?
If so, do you have (or know where I can get) a payment module? Or,
information on how I can process cards myself?
I'm looking for something like AuthorizeNet offers.
Please help.
-john
__John Monfort_
If Sendmail is configured propoerly, then you should be able to call it
from the system prompt without having to worry about the path.
That is, regardless if sendmail is in /usr/bin/sendmail or
/usr/local/bin/sendmail, you should be able to run it as:
%sendmail -argument $var $var
Hence, yo
The world is waiting, are you ready?"
-+___+-
On Thu, 29 Nov 2001, lallous wrote:
> John,
>
> Question 1,
> are you using PHP as ISAPI or CGI?
>
>
> "John Monfort" <[EMAIL PROTECTED]> wrote in message
> [EMAIL PROTECTE
Hey all,
Need some help.
Two questions:
1)
=Environment=
PHP 4.0.5
Win2k
Apache 1.3.20
MySQL ..3.24
===
I created a login page which uses MySQL to verify the username and
password.
When I run the script (submit the html form), PHP returns this error:
"The instruction at 0x10091c
Grimes,
> I do this a lot. If you want to use just the browser and server abilities
> without introducing the complexities of PDF/XML/XSLT and such, it is not too
> hard. I have done PDF, Standard Text and HTML to the browser and I have
> printed directly to a printer from the server using PHP.
If all you want to do is print, then a simple JavaScript code should do
the trick.
example:
//use php to send the report to a new browser
//in this case, report.php has the code to generate the reports.
XY Report
//in the new window (or at the end of report.php) generate this link
oseph
>
> -Original Message-
> From: John Monfort [mailto:[EMAIL PROTECTED]]
> Sent: Friday, 23 November 2001 12:36 PM
> To: [EMAIL PROTECTED]
> Subject: [PHP] Missing PHP.ini
>
>
>
>
> Hello everyone!
>
> I upgraded my system from win98 to win2k, a f
Hello everyone!
I upgraded my system from win98 to win2k, a few weeks ago.
Now, I can't seem to locate my php.ini file.
I've looked in
C:\
C:\windows
C:\windows\system (and system32)
to no success.
Is anyone aware of what may have happened?
I was under the impression that PHP
I've seen several sites that did the opposite--use PHP in Flash.
Try a search for 'php and flash'.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+__
Try This approach:
$msg = " I want to order: ";
if(!empty($pizza)) {
$msg .= $pizza."Pizza";
}
if(!empty($chips)) {
$msg .= $chips."Chips ";
}
if(!empth($hamburgers)) {
$msg .= $hamburgers." Hamburgers";
}
//Note: PHP has a one-line if statement, which slips my mind f
Where are you located?
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 19 Nov 2001, Peter Marrocco wrote:
> I am lo
It seems like that project vanished...none of the urls worked.
Thanks for the help!
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+__
You can run the application as a SERVICE.
Would that do the trick?
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 1
I just got it.
So far, it doesn't look like it lets convert your code to a .exe code.
My client's scoring logic is proprietary and I need to protect the code.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesign
Hello Everyone !
I'm looking for information on using PHP for standalone applications.
Specifically, I need to create a PHP-based application that can be runned
from a CD-ROM. Have any of you done this?
Any suggestions?
On another note:
I need to develop a CD-ROM based Survey, where the
Try this:
*** 'varname' is equivalent to ***
//adding
var total;
//html
//once the content of varname1 is changed, the value will be added to total
//add varname2 to total
...or something to that effect. Double check the syntax...
hope that that helped.
__John Monfo
PHAKT will reduce your development time, but you'll still need to
customize the code. That is, unless your doing something relatively
simple.
You're best bet is to learn the code. That's invaluable.
-john
__John Monfort_
_+---+_
Try removing the last period(.) after $quote.
Also, try this method:
$nl = "\r\n";
$message = $alias$nl$name$email$...so on and so forth.
Come to think of it, I think PHP has a constant for "\r\".
I think its NL or something like that, I can't remember. Look in the
manual pages for s
A few things to consider:
1) double check the include path.
2) if you're not the appropriate file is being included, then user
REQUIRE, as that will stop the program.
3) Variable Scope
Your function variables may be out of scope. Double check them, or
make them global.
4) If y
Thanks, Jason!
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 3 Sep 2001, Jason Murray wrote:
> > As I understan
Hello everyone!
I'm a little lost.
As I understand it, PHP 4 has CURL support.
1) is enabling the curl extension a substitute for installing the curl
package?
In other words, if I enable the extension, do I still need to instal
the CURL package?
2) Can I install curl
Hello all,
I'm working on an online membership system, for a pay-per-view website.
I'm looking for a user authentication system that does the following:
-implements 'members only' pages
-process membership registration (backed by mysql)
-online credit card processing(using authorize.net)
-reoc
Hello all,
I'm working on an online membership system, for a pay-per-view website.
I'm looking for a user authentication system that does the following:
-implements 'members only' pages
-process membership registration (backed by mysql)
-online credit card processing(using authorize.net)
-reocu
Hahahaha !!
I've received s many of these e-mails...
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On 6 Aug 2001, ke
Are you trying to add additional fields to the table, or just basic
banner info?
For the latter, you should be able to add everything from the admin page.
PHPAds will redirect you to the admin, or client, section based on your
username. When you create an account, you'll have the option to gi
Or, you could do two steps
1) retrieve the last inserted ID, with mysql_last_inserted_ID (or
something like that).
2) then, all records with id(s) greater then the_last_id_number minus
five.
something like
$most_recent = select mysql_last_id();
select * from TABLE where id > '$mo
Hello everyone,
Need some help. I installed phpMyAdmin on this new server and cannot
get it to work. I've installed this tool many times, so i'm pretty
comfortable with the installation process. However, I've never ran into
the errors I am getting today.
The server is Apache+PHP 4.0.6
>...ASP has gotta have something good about it cause microsoft uses it!
>
Hmm...you can get in sooo much trouble with that statement. Microsoft, in
any language, is not a synonym for 'quality'. Innovative? maybe. Quality?
no.
That statement should be your first reason why PHP is better. :-)
>
...And if all else fails, try www.webmonkey.com, devshed.com or search
for 'mysql tutorials' on google.com.
If you need a desktop reference, then I recommend the following books:
'MySQL and mSQL' -- by O'Reilly
'PHP Professionals'--published by WROX.
__John Monfort
Many thanks, Daniel!
I trully appreciate it.
-john
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Wed, 1 Aug 2001
Hello everyone !
Question:
I'm building an online membership registration system, for a 'membership
section' of a website. As it stands, I have a registration form that
insert the data into MySQL, then generate a confirmation page--with member ID
number, username, and password.
I wan
got to www.hotscripts.com download anything you want.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Fri, 27 Jul 2001,
Hello everyone,
I'm looking for a PHP/MySQL script that keeps traffic stats, similar to
what the Counter.com script offers.
Do you know where I can one that offer the following features?
The ideal script would:
-track user domain and IP
-track page viewed
-provide a graphical display o
ed some more answers - i used to do embedded systems
> design in another life back in the good old days.
>
>
> -Original Message-
> From: John Monfort [mailto:[EMAIL PROTECTED]]
> Sent: July 26, 2001 7:22 AM
> To: [EMAIL PROTECTED]
> Subject: [PHP] OT--PHP, MySQL, WM
Hello everyone,
This is slightly off topic, but I'm sure you guys are the best group to
answer this.
I have a client who needs a wireless website, that interacts with PHP and
MySQL. In addition to that, the client wants to be able to track the
geographical location, of the user--who will
Amen !
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Wed, 18 Jul 2001, Chris Lambert - WhiteCrown Networks wrote:
> W
Amen !
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Tue, 17 Jul 2001, Sterling Hanenkamp wrote:
> Just thought I'd se
> What companies issue card numbers that are not 16 numbers? Are
> they non-US cards? I haven't ever seen a card that wasn't 16 numbers.
A valid VISA card has between 13-16 digits.
I believe AMERICAN EXPRESS only has 15 digits.
-john
__John Monfort_
_+
>
> Ain't no such critter as a page break in html, but you can let the browser
> help out.
True. But, there is one in XML.
You can use XML to insert PRINTABLE page breaks in your documents. That
is, you can specify where a page ends, and a new one begins, when the web
doc is sent to the printe
> >If we didn't have Microsoft, we'd have to blame ourselves for all of our
> >programs crashing
If we didn't have microsoft, 'Crashing Programs' wouldn't be part of our
daily vocabulary :)
__John Monfort_
_+---+_
P E P I E D E
> Maxim Maletsky
> Founder, Chief Developer
>
> PHPBeginner.com (Where PHP Begins)
> [EMAIL PROTECTED]
> www.phpbeginner.com
>
>
>
>
> -Original Message-
> From: John Monfort [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, July 08, 2001 12:59 AM
>
I tried that, but it didn't work.
if (ctype_alnum($var)) {
echo "ok";
}else {
echo "no";
}
I got an 'undefined function' error.
php4.0.4pl1
Did I miss something ?
-john
__John Monfort_
_+---+_
P E P
Hello everyone,
I'm trying to determine if an argument is alphanumeric. Is there a
function to do this?
I thought PHP had a IS_ALPHA_NUMERIC function, but I can't seem to find
it anywhere. Was it wishful thinking ? Please help.
If you do know of this function, then please send me the synt
My map says, 'I am here'!
On Thu, 5 Jul 2001, McShen wrote:
> where are u guys?
>
>
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> To contact the list administrators, e-mail: [EMAIL P
Hello everyone,
I need some guidance. After browsing through a few shopping carts, I've
decided to write my own. I want to write one to satisfy the geek in
me...just for the love of doing it.
Plus, I want to add some additional features to it. Like, Wireless
access, etc.
Anyway, I'm loo
I used it.
It's a great tool.
Did you have any specific question?
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
www.pepiedesigns.com
PHP 4
Perl 5
MySQL
ASP
Apache
Web Access Panel
SSH
and a whole lot more...
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+_
Hello All,
It's good to have this list up again. Thank you, to all involved.
Question:
Printing a webpage (from the browser) and bypassing the print dialog
box.
I have a portable survey (laptop) that let's the user print the
results...via with windows.print(). By default, whe
I had some issues with that recently. It turns out that PHP will not
pick up the checkboxes, unless you use the GET method.
You can then access your vars with HTTP_GET_VARS.
This was discovered on
WIN98+ PHP 4.03pl1 + Apache 1.3++
&
WIN ME + PHP 4.03pl1 + Apache 1.3++
I'm trying to configure PHP on IRIx 6.5, with NS FastTrack.
PHP works in the shell, but not thru the server. I checked the log file
and noticed it (server) had a fatal error, because it could not find
redirect_php.so .
That file was not included in the distribution and is no where to be
f
even better...
forgot about that one..
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Wed, 23 May 2001, Zak Greant wr
You should be able to just print it. The code won't matter to php, but
the browser will process it.
";
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+
Try this sql statement:
// search for the keyword in NAME or DESCRIPION..
// using the wildcard '%'.
$sql="select * from TABLE_NAME where Name='%search_query%'
OR Description='%search_query%'";
$result=mysql_query($sql) or die ("blah, blah, blah");
...more php codes...see php manual for
:
> http://www.ruby-lang.org/en/
>
> Quite impressive as an idea and I really like it's language concept,
> but it is still soo immature.
>
> Sincerely,
>
> Maxim Maletsky
> Founder, Chief Developer
> PHPBeginner.com (Where PHP Begins)
> [EMAIL PROTE
What is RUBY?
-John
On Tue, 22 May 2001, Maxim Maletsky wrote:
> Hello gurus,
>
> does anyone know a way to make PHP and RUBY running together (parsing both
> the same file) ?
>
> This is what I tried to do:
>
> httpd.conf:
>
> AddType application/x-httpd-php-source .phps
>
I believe there is a window.print() JavaScript code, that lets you
print a document. I've never used it, so I'm not sure.
Print Document
//or something like that...
good luck !!
__John Monfort_
_+---+_
P E P I E D
Try SSH (Secure Shell)
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Fri, 18 May 2001, khuram latif wrote:
> Hi De
Can you connect to MySQL manually?
If so, then you should be able to connect with PHP's
mysql_connect($username,$password,$host);
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is wa
*oops!*
Sorry about the double ampersands...
newpage.php?variable1=value1&variable2=value2...
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+_
Sending variables in url:
newpage.php?variable1=value&&variable2=value2&&variable3=value
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+_
We offer hosting with PHP,MySQL, and SMTP.
www.pepiedesigns.com
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Wed, 1
Is your MySQl server on?
What platform are you on?
Also, make sure your username, password, and database name, are correct.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are
That will work, assuming the user is not allowed to purchase multiple
items...
-John
On Wed, 16 May 2001, Ralph Guzman wrote:
> Might want to reconsider the way you are doing this, since this may not be
> the most efficient way. An alternative might be to do this as follows:
>
> In your web
I don't know the code, but I would assume you could do the following:
1) read the file into an array, with each line as an element
2) search the element that has the line you're looking for...probably a
keyword
3) remove that element from the array
4) implode the array
5) rewrite th
I'm looking for a good reference to installing PHP 4 on a IRIX+NS
Enterprise system.
Please help.
Thanks in advance.
-John
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list
Hello everyone,
This is is a little off topic.
I was configuring MySQL on IRIX, when I realize that the system does not
have the commands to add users.
GROUPADD and USERADD
So, I was wondering if someone could help me with the following:
The installation guides ask me to run
Hello everyone,
I remember noticing a "PHP Flat File Support" function, or script, or
something. While reading the PHP manuals, and online tutorials. However,
I have not been able to find concreate information about it.
Does that function exists? If so, then where can I find some
in
**Ouch !! **
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Fri, 4 May 2001, Hrishi wrote:
>
>
> MTV Jams wrote:
PHP Stands for
Hypertext Pre-Processor (PHP)
You can more info at www.php.net
The battle between ASP and PHP is ongoing. Same thing for Perl.
www.UDzone.com has an article on this, it's called 'Seven Reasons Why
PHP is better than ASP".
__John Monfort_
www.php.net
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Fri, 4 May 2001, YoBro wrote:
> Hello,
>
> I need to fin
Ok...all together now, in how many languages can you say,
OUT OF PLACE !!!
--Spammers, sheesh !
--
On Thu, 3 May 2001, MTV Jams wrote:
> http://www.mp3.com/mcpedro from [EMAIL PROTECTED]
>
> The question is this, If you placed a Jamaican born MC on a Hip
> Hop/Trance/Techno track and
I too had to downgrade to PHP 4.0.4pl1. Version 4.0.5 would not let me
load my extensions(dynamically).
PHP+Apache
Win 98
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, a
Hello everyone,
Is anyone else having this problem? My PHP+ Apache system was working
fine, before I upgraded to PHP 4.0.5. Since then, my server crashes,
everytime I try to enable my extensions.
I have the following configuratioin:
1)
extension_dir= "C:/PHP/extensions"
[both C:/PHP
ot;The world is waiting, are you ready?"
-+___+-
On Mon, 30 Apr 2001, Mark Roedel wrote:
> > -Original Message-----
> > From: John Monfort [mailto:[EMAIL PROTECTED]]
> > Sent: Sunday, April 29, 2001 10:40 PM
> > To: [EMAIL PROTECT
Hello everyone,
I'm curious. Which is the better practice?
1) Insert the HTML page (...HTML code) in the database ?
or
2) Insert a URL in the database field, that points to the HTML page?
why?
Any help will be appreciated.
Btw, thank you all for helping with my previous
you might want to consider add the html PRE tag, to preserve the output
format.
Something like,
> exec ("du -ks /home/apache",$test[]);
echo " $test[0] ";
This will display the result in the browser, just as it does in the Unix
shell.
__John Monfort_
_+
you ready?"
-+___+-
On Thu, 26 Apr 2001, Andrew Hill wrote:
> Check out www.interakt.ro
> It's beta... but functional.
>
> Best regards,
> Andrew
>
>
> On Thursday, April 26, 2001, at 06:46 PM, John Platte wrote:
>
> > John Monfort wrote:
> >
d=3&NewsId=505
enjoy!
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Thu, 26 Apr 2001, John Platte wrot
Hello everyone,
I was wondering, is anyone aware of a PHP server model, for Ultradev?
Or, any leads on how I can create one?
I'm developing a site with PHP+MS Access+Ultradev. I wanted to use some
of the Ultradev server model features (and convenience), but
they only support ASP/JSP/JScr
bc.org on compiling PHP with iODBC.
>
> Best regards,
> Andrew
> --
> Andrew Hill - OpenLink Software
> Director Technology Evangelism
> Universal Data Access Integration
> http://www.openlinksw.com
>
> > -Original Mess
Hello everyone,
I'm looking for information on PHP+ MS Access , and PHP+MS SQL.
Any recommendations?
Thx in advance!
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you re
Hello everyone,
I want to build an online training center that let's me monitor/track
user progress, througout an online curriculum. The goal of the project is
to be able to 'certify' the user after completing certain lessons.
I want to:
-have online exams,etc.
-make it possible t
Hello everyone,
Quick question:
I would like to install a standalone web server can run PHP, I'm looking
for guidance on how to do this.
Basically, I want to add a PHP application on a CD-ROM, for
demonstration purposes.
I know PHP can be runed as a standalone, but what about th
Is that still true when you include the file?
Say you have a notfoo.php file, and include foo.php in it. You don't
still have to pass the cookies, do you?
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesign
You'll probably won't get to see the now :-<.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 16 Apr 2001, Mark Ma
Hello everyone,
I'm looking for a guestbook script that lets you moderate the new
entries, before they are posted.
Do you know any?
PHP or Perl.
Please let me know.
__John Monfort_
_+---+_
P E P I E D E S I G N S
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 26 Feb 2001, David Robley wrote:
> On Sun, 25 Feb 2001 18:21, Brandon
Hey...Bruno from Brazil :)
Try this
while ( list ( $key,$value ) = each($HTTP_POST_VARS) ) {
echo "$key: $value";
}
This will list every variable that was past to the browser.
Enjoy!
__John Monfort_
_+---+_
P E P I
Is it necessary to include the 'http:' in the DB field?
It would make your life a lot easier to drop it.
You would then store the url values as
www.mydomain.com
Then, modify your code to add the 'HTTP' whenever it encounter a URL, or
wherever you will create a link.
This would elim
Actually, you may not have to do all that.
you can use implode().
By default, implode will join an array, with the supplied character.
So, if you have
$list = (one two three four);
you can do
$all = implode("," , $list);
to get
$all = "one,two,three,four";
This w
An unsuccessful include will give you an error.
An unsuccessful require will kill the program.
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___
I feel your pain.
:-(
__John Monfort_
_+---+_
P E P I E D E S I G N S
www.pepiedesigns.com
"The world is waiting, are you ready?"
-+___+-
On Mon, 19 Feb 2001, Adrian Murphy wrote:
> i'
> 1. It appears if I use the header function I have to redirect the page to
> another page, it doesn't appear possible to retrieve a page into the current
> page? Unless someone can show me some code that would do that.
>
If all you want is to display the remote page, within the local page,
I've been struggling with the same idea.
I haven't been able to process the returned value, but I've the
following methods to DISPLAY the cgi results. Although, the PHP has no
way of knowing wether the CGI evaluated to a Yes or No result.
If you solve this, then please let me know.
1 - 100 of 109 matches
Mail list logo