Hi,
Can anyone tell me what may be wrong with my email configuration? I
am using Microsoft Outlook with a Microsoft Exchange Server. My PHP programs
can no longer send emails. They were able to before, seems like it stopped
about a month ago. I don't believe I have changed anything. And it's
['style']) ) {
$_SESSION['style'] = $_GET['style'];
} elseif ( !isset($_SESSION['style']) ) {
$_SESSION['style'] = 'styles';
}
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Does anyone have any idea of why I may be getting this error, when my
scripts ran perfectly fine before (i don't know what). Is there some kind of
setting in my mail program that may have changed? I'm using Outlook with
Exchange Server.
Warning: Failed to Connect in d:\apache\htdocs/emailtest.php
http://validator.w3.org/check?uri=http%3A%2F%2Fnemesis1.f2o.org
I have tried not starting the session until the link is clicked but then
the session does not carry over to the next page. Any Ideas?
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.ph
ried not starting the session until the link is clicked but then
G> the session does not carry over to the next page. Any Ideas?
G> TIA
G> Gary
It's the '&' that they are objecting to, change this line in your php.ini to the
following:
arg_separator.output = "&a
ly as I want it with the addition of two ones "11"s can anyone tell me
how to get rid of the ones?
(if I run anyfile.php by itself there are no "1"s)
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thank you for your replies they are appreciated,
I've tried a few things in response to your answers but all I can get is
either "1" by it self or no include. Ernest is correct in assuming there is
code in the included file it is as follows
perhaps you can see m
Thanks for your response James!
but still I must be doing something wrong the "1" is a persistent little
bugger. Have you any tips on how to rewrite:
using the ob_methods?
Again thanx for your response
Gary
James Holden wrote:
> The '1' is received simply because your re
Ernest E Vogelsinger wrote:
> At 20:19 07.03.2003, Gary said:
> Rewrite this to just
> require_once('topten.php');
Thanx Ernest!
that does the trick
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
catch the var?
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Tried that already and get an error using $_GET['bname']
T_ENCAPSED_AND_WHITESPACE, expecting T_STRING or T_VARIABLE or
T_NUM_STRING
using $_GET[bname] without the quotes
Undefined index: bname
Gary
Kevin Stone wrote:
> Pass the vars the same way. Use $_GET['bname
me by
$owner
";
}
Gary
Kevin Stone wrote:
>There's obviously something wrong with the way you're handeling the new
>variable. Do extract($_GET); and go back to the way you were handeling it
>before.
>
>echo $bname;
>
>-Kevin
>
>- Original Messa
I was wrong, it is passing $bname. I have got it down to a syntax error
by using.
$sql = "SELECT * FROM bugs WHERE bname = {$_GET['bname']}";
gary
Gary wrote:
> I don't think it is being passed. I think I am going to have to figure
> out how to pass bname i
Hi All,
Can someone explain to me why I am getting an error for the following?
$keywords = $_POST[keywords];
if ($keywords) {
echo"<META NAME="keywords" CONTENT=" $keywords ">";
}
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To un
I knew I shouldn't of been doing this on Saturday morning. I forgot
something as simple as that. Maybe another jolt of caffeine is needed.
Thanks
Gary
Matt wrote:
> The quotes within the quotes.
> Change to:
> echo"<META NAME=\"keywords\" CONTENT=\" $keywor
I have a form, the action is PHP_SELF. When the form is submitted it
prints the info lower on the page. The problem, the errors for the empty
fields are printed until the form is submitted. What would be the best
way of suppressing these error?
TIA
Gary
--
PHP General Mailing List (http
pressing these error?
>
>
> The best way to suppress your errors is to fix them. :)
>
> Or you can work around it by using the error_reporting() function.
>
> ---John Holmes...
>
>
They are not really errors they are reporting that the form fields are
empty until the
Jean-Christian Imbeault wrote:
> Gary wrote:
>
>>
>> They are not really errors they are reporting that the form fields are
>> empty until the form is submitted.
>> Notice: Undefined index:
>
>
> That means your code is not doing any checking of the in
= $row[1];
$responce1 = $row[2];
$responce2 = $row[3];
$responce3 = $row[4];
}
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
$row[2];
>> $responce2 = $row[3];
>> $responce3 = $row[4];
>> }
>
>
> ---John Holmes...
>
>
that fixed the unexpected t_variable but now it is Fatal error: Call to
undefined function: fetchrows()
list($id, $question
>>>
>>>
>>that fixed the unexpected t_variable but now it is Fatal error: Call
>>
>>
>to
>
>
>>undefined function: fetchrows()
>>
>>list($id, $question, $responce1, $responce2,$responce3) = $res-
>>
>>
>>
Doesn't work, get unexpected { for if( $res->numRows() {. If I remove
braces or rearrange them it fall apart piece by piece.
Thanks for the try
Gary
Marek Kilimajer wrote:
> what about
>
> if( $res->numRows() {
>while( $row = $res->fetchRows() ){
>
$question = $row[1];
$responce1 = $row[2];
$responce2 = $row[3];
$responce3 = $row[4];
}
}else{
echo"bla bla";
}
?>
now I have to post again on a strange row problem.
Thank
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
*/
$perc_vote2 = round(($vote2/$total)*100,2); /* Division by zero*/
$perc_vote3 = round(($vote3/$total)*100,2); /* Division by zero*/
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Yes, I did that before I posted.
I am beginning to wonder if vote1-3 are being retrieved from the database.
Gary
John W. Holmes wrote:
> Sounds like $total is zero to me...do you think PHP is making up errors
> for you? Have you checked the value of $total and the different $voteX
>
c_vote2 Percent3 $perc_vote3"";
}
?>
Owen Prime wrote:
> Make sure that vote1, vote2, and vote3 are not null. Maybe you need to use
> the IFNULL(vote1, 0) function.
>
> Cheers,
>
> Owen.
>
>
>
> Gary wrote:
>
>
>> I am trying t get the pe
id it show up in the url but does nothing. If i check if it is
set, it is not. IT is supposed to pass the id number to mysql on the
linked page. I there something I am missing some new way or do I need to
turn on something in the ini?
TIA
gary
--
PHP General Mailing List (http://www.php.net
is showing up in the url edit.
Gary
Brad Bonkoski wrote:
> How about a code snippet of how you are retrieving the variable?
> -Brad
>
> Gary wrote:
>
>
>>Hello,
>> My host has upgraded to 4.2 but still uses the old ini setting. I am
>>trying to rewrite my
($res);
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ession variable.
>
Thanks Rasmus and John,
The sessions are being set in the browser but when checking for them on
each page I am sent to the error page. I notice that when I upgraded to
4.2.3 the sessions are no longer stored in the tmp folder. I check the
ini and the folder and pat
Hi All,
I am have trouble getting $address to print the URL that is in the db.
%s is
printing the url with the word address instead of the real address.
The code is below.
$sql ="SELECT * FROM links ORDER BY owner";
$sql_result = mysql_query($sql, $conn) or die ("couldn't
Connect
Matt wrote:
- Original Message -
From: "Gary" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Sunday, October 27, 2002 2:00 PM
Subject: [PHP] defining a variable
Don't just try to change 'address' to $row['address'] abve, because you
p
TIA
Gary
The Nemesis Project
http://nemesis1.f2o.org
One Stop CSS
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
I have recently up graded to 4.3.4 and now my links to pear have quite
working. I have tried replace pear with go-pear and it is not working.
What am I doing wrong?
Old
ini_set('include_path', 'C:/php/pear/');
require_once 'PEAR.php';
require_once 'DB.php
for
30 minutes or more. The straw that broke the camels back, they change
their email system and didn't notify our clients.
In the end it took our clients lawyer to completely break off with them.
they kept bill and writing threating letters for months.
Gary
--
PHP General Mailing List (
Is there anyway in PHP to prompt the user for input like JavaScript's
prompt("Hello, what is your name?")
Thanks, Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To c
Is there a way to pass a JavaScript variable to a PHP function?
Thanks, Gary
--
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]
Is there a way to dynamically change a variable name? For example:
I want to change the variable name $DWG to
$DWG1
$DWG2
$DWG3
with a for loop. Is there a way to do this?
Thanks, Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional
Thanks!
"Mark Maggelet" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
On Sun, 18 Mar 2001 20:36:15 -0500, Gary ([EMAIL PROTECTED]) wrote:
>Is there a way to dynamically change a variable name? For example:
>I want to change th
Hi all,
I know how to get a line break in text. Is there a way to get a line
break between the user agent string below? I would line to print in a
column instead of a long row.
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For
Thanks for everyone's help on the original question. Now that I have
gotten the line breaks in a file, How do I get the file out with the
breaks? Also, does anyone know of a good tutorial on file formatting.
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
Is there a way to do calculations with dates? Preferably ignoring weekends.
Thanks, Gary
--
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]
Im having a problem with Authentication uisng $PHP_AUTH_USER and
$PHP_AUTH_PASSWORD works fine connecting via netscape but automatically
set to false when using IE 5. Apache server , PHP installed as a module
on a freebie server. Code below:
';
echo 'Please go to Registration
page to Get a log
> );
> header( 'HTTP/1.0 401 Unauthorized' );
> echo 'Authorization Required.';
> exit;
>
> } else {
>
> ***your stuff goes here when authenticated
>
> }
> ?>
>
> works excellent on any browser, apache server with PH
to
a matching user. Does anyone know of a tutorial or decent document on
how to go about doing this.
TIA
Gary
--
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
that is nix command. On window you need to start MySQL one of two ways.
http://www.mysql.com/doc/W/i/Windows.html
HTH
Gary
Morten Nielsen wrote:
> Hi,
>
> I try to use mySQL through PHP, but I can't get it to work.
> Both PHP and mySQL is installed on my computer (win2k). Th
Jtjohnston wrote:
> I want to do something like this on a page:
>
> Pages: 1 2 3 [Next>>]
>
> How can I code SELECT * FROM `bookmarks` LIMIT 0, 30 ?
>
> Thanks?
>
> John
>
>
This should be of some help.
http://phpbuilder.com/columns/rod20001214
Hello All,
Can someone please RTFM me so I can convert MySQL 24 hour time to 12
hour time.
TIA
gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Doesn't php for windows come with pgsql already? extension=php_pgsql.dll
Gary
Todor Stoyanov wrote:
> Any ideas how to get PHP for win32 with PostgreSql support?
>
> Cheers
>
> Todor
>
>
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscri
There is no PHP support in Dreamweaver UltraDev.
Gary
Luke Crouch wrote:
> I know Dreamweaver UltraDev has nice site management features for using a
> JSP/SQL type serverdoes it have similar capabilities with PHP/MySQL?
> Does anyone know?
>
> -L
>
>
>
--
works ust fine.
Gary
Edward R. Bailey wrote:
>
>-BEGIN PGP SIGNED MESSAGE-
>Hash: SHA1
>
>Actually Ultradev does support PHP if you buy a php application
>server extension. A company in Romania (The name escapes me) makes
>the extension and I have heard it works ver
$pa > $pb or $pb > $pa then subtract smallest from
the largest and add $ca and then add $ps
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
do this??
>
> Thanks!!
>
>
body{
scrollbar-base-color:black;
scrollbar-arrow-color:black;
scrollbar-highlight-color:#FF8000;
scrollbar-3dlight-color:silver;
scrollbar-shadow-color:silver;
scrollbar-darkshadow-color:black;
scrollbar-face-color:#FF8000;
}
HTH
Gary
--
PHP General Ma
with Yahoo! Greetings!
> http://greetings.yahoo.com
>
That depends on what you are calling cheap.
http://site-works.com/hosting_plans_comparison_chart.html
HTH
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ff to the mail script mailfriend.php or what ever you name it. collect
all the variable in the mail() script.
" name="url">
Friends Email:
Your Name:
Your Email:
HTH
Gary
Renato Salvatore Moya L. wrote:
> ah! ,i
smtp.minspring.com is the address for out going mail.
Gary
Dr. Shim wrote:
> Alright, I will show you my entire mail code here. BTW: I cannot mail using
> mail() function
>
> [mail function]
> ; For Win32 only.
> SMTP = mindspring.com
>
> ; For Win32 only.
> sendm
Hi all,
Before I get started and have to figure out a problem. Is it legal in
PEAR DB to connect like this
$dbh = DB::connect("mysql://$user:$pass@$host/$dname); where user,
password, host and database names are coming from an include?
TIA
Gary
--
PHP General Mailing List
);
where did I screw up.
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
nope, I am getting it too.
Gary
Erik Price wrote:
>
>
> Am I the only one who gets the following message each time I post to
> php-general? Is there a moderator who could remove this subscriber?
>
> Begin forwarded message:
>
>> From: "Postmaster"
g like a cookie or database to collect and
pass on the information to the page that resides in the window.
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
om/
>
>
>
Is that going to catch the Mozilla spoofers, like webtv and opera?
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
o see if they is
>to see if they can preform advanced scripting by using. if (document.getElementById
>&& document.createElement). If your checking for only CSSS you can skip
>document.createElement it is only for Opera 5.
>
Gary
>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
uilder for php that works like the one that
come with Homesite. I don't use it but it used to be on the Allire site.
Since Macromedia owns hs now, No telling where to find it.
gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Ben Curtis wrote:
> I noticed this server-side scripting language which has an interesting
> twist: your code can be complied and loaded as an apache DSO. Would
> this be feasible with PHP?
>
>
http://www.php.net/manual/en/install.apache.php#AEN855
--
PHP General Mailing List (http://www.
I would guess that the cloest thing would be the Zend Encoder. Someone
on the list may working on something else.
http://zend.com/store/products/encoder-faq.php#3
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
to a raw data text file for this
> information as well.
>
> Regards,
>
> Shannon
This is probably what you have been looking for. Look at the home page
for the METAR links if you need them.
http://sourceforge.net/projects/phpweather/
HTH
Gary
--
PHP General Mailing List (http://ww
Does anyone know of how to put a Word file on a web page without the user
being able to save it to their hard drive? And also another issue of making
it so they can't print it.
Thanks, Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
sheets works the same as any other language that you can link to
your document.
HTH
gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Is there a way to get the user information? I know there must be a constant
variable, but I can't seem to find it.
Thanks
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Thanks everyone!
"Gary" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Is there a way to get the user information? I know there must be a
constant
> variable, but I can't seem to find it.
>
> Thanks
>
>
--
PH
Steven Walker wrote:
> Is there a way to regular hyperlinked text to submit a form?
>
> For example, rather than having a button that says [Login], I just want
> underlined text: Login
>
> Steven J. Walker
> Walker Effects
> www.walkereffects.com
> [EMAIL PRO
> My PHP NUke:
> mpn188_final.zip
> http://www.myphpnuke.com/
>
> Thanks in advance,
> Curt
>
>
>
>
One more for you to check out.
http://phpwebsite.appstate.edu/
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
e since Im not a member of this maillinglist.
>
>
The javascript showing up in the left frame is not showing the same as your link to it.
The page showing up in the frame
is broken. The javascript tags are closed before the script
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
[EMAIL PROTECTED] wrote:
>Gary wrote:
>
>>
>>John Ericson wrote:
>>
>>>Im programming a page where I have a java-tree-menu that gets generated
>>>from a db. The code works perfectly but sometimes when a browser reads the
>>>page I just get
Simon Willison wrote:
> Gary wrote:
>
>> Hi All,
>> I am not too bad at building arrays in php but I need to convert a
>> javascript form into php. How wuld I conver the small snippit here?
>>
>> var d = new Array(), l = new Array();
>> l[0] = new A
I am using date(B);
http://www.php.net/manual/en/function.date.php
that break 24 hours into 1000 beats I will still have to use timezone
but break them into beats.
Gary
Stewart G. wrote:
>Why dont you just use timezones?
>
>=S.
>
>On Mon, 25 Feb 2002, Gary wrote:
>
>
They will up grade
everything running on the server Apache, PHP, Perl, Python, SQL
databases, and upgrading to SSH, ETC. That is a major undertaking when
you have 20+ servers. Ask you host if they have any new servers and what
version is running on them.
Gary
--
PHP General Mailing List (http
tent-type: $fileType");
> Header("Content-type: image/gif");
> echo $fileContent;
> }
> else
> {
> echo "Record does not exist";
> } // else
> ?>
>
>
Are you storing the complete html tag? The browser dosen't know what or where to
display without the image tag.
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
problem?
>
> Thanks!
>
> Anthony Rodriguez
> ([EMAIL PROTECTED])
>
>
Since you are using a cable modem, You are using a firwall too,Right?
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello Everyone.
I saw a Perl script today that the owners of the site can send an
email and pages would update automatically update. How are they
accomplishing this?
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Jtjohnston wrote:
> Can anyone recommend a good CSS news group?
>
>
>
http://two.pairlist.net/mailman/listinfo/css-discuss
Very hard core CSS List
HTH
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
t; trying to use background-image:file.gif, but it doesn't seem to work.
>
> Thanks,
> Vlad
HTH
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
http://foo.com"; name="MyFrame" id="MyFrame" width="400"
height="300" marginwidth="0" marginheight="0" scrolling="no"
frameborder="0">
You need to give a height. NN4 does not support iframe
Gary
Jtjohnsto
Can someone explain to me the reason for using return.
function _getValue($foo)
{
$foo = $_POST;
return ${$foo};
}
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
ters
that people use?
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
phone number.
When I sat down and thought about it there are too many problems. These problems range
from country codes,
city codes , and area codes all changing daily to business phones. Your
looking at #*. + ( )- and probably many more I haven't thought of. Looks
like I will only ch
Hello All,
How would I strip all HTML before the info in inserted to MySQL? The
info is sent with a form. We Have one person that insist on using HTML.
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail
Thanks James:
I had figured that part out (should of said so). What is happening is
a form is passing the stuff to another page that does the DB UPDATE. The
form action is
.
Where I am lost is where to put the strip_tags() like
action=strip_tages("update.php");
Gary
Yz J
On sending a large number of newsletters out, how would you stop php
from timing out if you do not have access to the .ini file?
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact
OK, is there a limit on set_time_limit? The host of the site has a limit
of 30 mails a second to stop spamming. so I need set_time_out of 60
seconds, that will give me 90 seconds to send all the mail.
Gary
Tim Zickus wrote:
> On Tue, 2001-10-23 at 15:34, Gary wrote:
>
>>On sen
Can php write to a htpasswd file? If it can will someone point me in the
right direction.
TIA
Gary
--
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
How do you get a SSI to work on a php page?
TIA
Gary
--
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]
Yes I do, it is to run a pre-exiting program. I figured it out. I was
uing double quotes in the ssi and excaping them when echoing. I should
of been using single quotes.
Thanks
Gary
Christian Dechery wrote:
> At 19:04 28/10/01 -0500, Gary wrote:
>
>> How do you get a SSI to w
What would cause a fatal error using virtual(/cgi-bin/folder/program.pl); ?
TIA
Gary
--
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]
Tried that, same result. looks like I am going to have to strip off the
php from that page and change it to shtml
Gary
Nikola karoviƦ wrote:
> you could try using require(/cgi-bin/folder/program.pl); instead
> -
> volim popit, volim zagalamit
> - Orig
Has anyone been able to run PHP 4.06 as a module on windows 98? Every
time I have tried, using the install directions I get an error on
starting Apache.It tells me it take two arguments, a module name and
shared object file what am I doing wrong?
Gary
--
PHP General Mailing List (http
Hi All,
When using the dtd below on a page that has a form with php. I get a
parser error for am I going to have to go back to
a HTML 4.01 dtd or can I do something like escape the ? ?
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
http://www.w3.org/1999/xhtml">
TI
Brian Clark wrote:
> Hi Gary,
>
> @ 4:38:17 PM on 4/9/2001, Gary wrote:
>
>
>> When using the dtd below on a page that has a form with php. I get a
>> parser error for am I going to have to go back
>> to a HTML 4.01 dtd or can I do something like escape the
Hello All,
I am still kinda new to php. I know how to write/create a flat file but
how would I write to a flat file from a form object ?
TIA
Gary
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED
I can do basic file uploads. How do you let the user choose the number of
uploads with drop down list?
Gary
--
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
1 - 100 of 555 matches
Mail list logo