"Taksam" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
>
> Anybody used OpenAMF+PHP? ( http://www.amfphp.org/ )
>
> It is an open-source Flash Remoting gateway. I already used it with Java
and works OK. Just wanted to know if somebody here used it with PHP and
would like to know if th
On 27 Jul 2005, at 21:22, Jack Jackson wrote:
Right. Except I would rather have it working in a session because I
specifically do not want to have the form sending $_POST data back
and forth to the browser six times for several reasons. SO I'd like to
Page1 // User enters first batch of da
Mark Rees wrote:
"Taksam" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Anybody used OpenAMF+PHP? ( http://www.amfphp.org/ )
It is an open-source Flash Remoting gateway. I already used it with Java
and works OK. Just wanted to know if somebody here used it with PHP and
would li
Hi, i want to know if it is possible to create a function and declare
that one of its arguments is array type.
In fact i want to do something like this
function test(String $litteral, array $foo){
.
}
I got an error when i do something like this. Can you help me please?
Thx,
Marc
--
> -Original Message-
> From: Ryan A [mailto:[EMAIL PROTECTED]
> Sent: Tuesday, July 26, 2005 6:29 PM
> I presently require hosting with a company that has their servers in
> Sweden,
> and I need a shared hosting account,
> any recommendations are welcome, the server is for a client.
>
>
On Thu, 2005-07-28 at 11:08 +0200, marc serra wrote:
> Hi, i want to know if it is possible to create a function and declare
> that one of its arguments is array type.
>
> In fact i want to do something like this
>
> function test(String $litteral, array $foo){
> .
> }
>
> I got an erro
On Wed, 2005-07-27 at 17:17 -0400, Sebastian wrote:
> i never really used constants before so this may sound stupid..
> when you define a constant using define() and want to return true/false
> is this logical:
>
> if($bars == 3)
> {
> define('BAR', 1);
> }
>
> then:
>
> if(BAR)
> {
> /
I'm not sure if this is a bug or a feature, but it seems you can't
use class constants to set default values for class properties. You
can, however, use them for default values for method params, e.g.:
class foo {}
const BAR = 100;
private $thing = self::BAR;
function wibble($a = self::
I've seen this discussed before, but no solution seems to have ever
been suggested. I'd like to replace the first instance of a substring
in a string. So if we were to replace the first 'the' with 'a' in the
sentance
"Then the big bear ate the little cat in the north of the woods."
we would have:
"
Ahem!
> -Original Message-
> From: Kim Madsen [mailto:[EMAIL PROTECTED]
> Sent: Thursday, July 28, 2005 12:01 PM
> I would *never* host anything on a server with safe_mode on!
s/safe_mode on/safe_mode off/
/Kim
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: ht
Hey Kim,
> I would *never* host anything on a server with safe_mode on!
Just 1 day late :-( just bought hosting for a year with b-one.se :-(
Whats the main reasons you would never host with safe mode on?
and whats this:
s/safe_mode on/safe_mode off/
??
Thanks,
Ryan
--
PHP General Mailing
On Thursday 28 July 2005 01:48, Chris W. Parker wrote:
> I was just expirementing with the diff command and was wondering if
> there was anything out there that does the same thing but with a more
> intuitive interface?
>
> The problem I want to avoid is a basic one. "Which file did I update
> las
> > -Original Message-
> > From: Kim Madsen [mailto:[EMAIL PROTECTED]
> > Sent: Thursday, July 28, 2005 12:01 PM
> >
> > I would *never* host anything on a server with safe_mode on!
What are your reasons for this decision?
regards,
Bostjan
--
PHP General Mailing List (http://www.php.ne
On 28 Jul 2005, at 12:07, André Medeiros wrote:
On Thu, 2005-07-28 at 11:08 +0200, marc serra wrote:
Hi, i want to know if it is possible to create a function and declare
that one of its arguments is array type.
In fact i want to do something like this
function test(String $litteral, array $
On Thursday 28 July 2005 01:50, André Medeiros wrote:
> You can have four words to describe a first and last name... you can
> have other alphabets, like arabian, chinese, etc... inserting accented
> characters alone would make that a big, nasty regex, let alone
> predicting ways you can describe
On Thu, 2005-07-28 at 12:45 +0100, Marcus Bointon wrote:
> On 28 Jul 2005, at 12:07, André Medeiros wrote:
>
> > On Thu, 2005-07-28 at 11:08 +0200, marc serra wrote:
> >
> >> Hi, i want to know if it is possible to create a function and declare
> >> that one of its arguments is array type.
> >>
>
On Thu, 2005-07-28 at 19:45 +0800, Jason Wong wrote:
> On Thursday 28 July 2005 01:50, André Medeiros wrote:
>
> > You can have four words to describe a first and last name... you can
> > have other alphabets, like arabian, chinese, etc... inserting accented
> > characters alone would make that a
Hello,
I was wondering if anyone here has or is currently buying VPS systems.
Anyone have any general performance comments, favorite vendors etc
Thanks,
--
Yves Arsenault
"This year, or this month, or, more likely, this very day, we have
failed to practise ourselves the kind of behaviour
Marcus Bointon wrote:
I'm not sure if this is a bug or a feature, but it seems you can't use
class constants to set default values for class properties. You can,
however, use them for default values for method params, e.g.:
class foo {}
^--- er.
const BAR = 100;
private $
Somehow my intent has been turned around here and I apologise.
I do not want to use *any* client side validation. I only want to do
server side validation and server side storage.
My intent was to remove the client from as much as possible of this - if
I didn't need their information I wouldn
Dotan,
now _I'm_ sending _you_ multiple copies (last one didn't go to the list by
mistake!)
Dotan Cohen wrote:
I've seen this discussed before, but no solution seems to have ever
been suggested. I'd like to replace the first instance of a substring
in a string. So if we were to replace the firs
André Medeiros wrote:
On Wed, 2005-07-27 at 17:17 -0400, Sebastian wrote:
i never really used constants before so this may sound stupid..
when you define a constant using define() and want to return true/false
is this logical:
if($bars == 3)
{
define('BAR', 1);
}
then:
if(BAR)
{
...
[snip]
>>if($bars == 3)
>>{
>>define('BAR', 1);
>>}
>>
>>then:
>>
>>if(BAR)
>>{
> That's an incorrect use for constants. Use variables for that =]
WHY?
[/snip]
Because the constant can be variable in this case. Consider (this is old
school, and we all know that I am the definition of old scho
On Thu, 2005-07-28 at 14:41 +0200, Jochem Maas wrote:
> André Medeiros wrote:
> > On Wed, 2005-07-27 at 17:17 -0400, Sebastian wrote:
> >
> >>i never really used constants before so this may sound stupid..
> >>when you define a constant using define() and want to return true/false
> >>is this log
The point of sessions is that when you close your browser, you loose it.
I'm affraid that if you want sessions that last two weeks, you'll have
to make your own session handler :) but yeah, it's possible, and it
beats the crap out of the "fill form, store in db, fill form, store in
db" method.
--
Jack Jackson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Somehow my intent has been turned around here and I apologise.
>
> I do not want to use *any* client side validation. I only want to do
> server side validation and server side storage.
>
> My intent was to remove the clien
Exactly,
CONSTANTS are ... "eternal truths" to the program, they shouldn't
change, constants should not be changing based on arguments being
passed, or other variables.
by definition, it's no longer a constant, and a misuse of the define
() function.
On Jul 28, 2005, at 8:46 AM, Jay Bl
Jack Jackson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Somehow my intent has been turned around here and I apologise.
>
> I do not want to use *any* client side validation. I only want to do
> server side validation and server side storage.
>
> My intent was to remove the clien
The light dawns.
Thank you everyone for this explanation, and the help
JJ
Mark Rees wrote:
Jack Jackson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Somehow my intent has been turned around here and I apologise.
I do not want to use *any* client side validation. I only wa
Sebastian wrote:
i never really used constants before so this may sound stupid..
when you define a constant using define() and want to return true/false
is this logical:
if($bars == 3)
{
define('BAR', 1);
}
then:
if(BAR)
{
// bars is true
}
or should i need to do an else statement as
Jack Jackson" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> Somehow my intent has been turned around here and I apologise.
>
> I do not want to use *any* client side validation. I only want to do
> server side validation and server side storage.
>
> My intent was to remove the clien
>
> Somehow my intent has been turned around here and I apologise.
>
> I do not want to use *any* client side validation. I only want to do
> server side validation and server side storage.
>
> My intent was to remove the client from as much as possible
> of this - if
> I didn't need their in
On 28 July 2005 13:39, Jack Jackson wrote:
> What I wanted to do was this:
>
>
> p. 1 : I send client page one, they send answers. SUBMIT
> sends to page 2
> script.
>
> p 2. Before displaying anything to the client, Page 2 script validates
> input from page 1. If there are problems, page 2 scr
"André Medeiros" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
> The point of sessions is that when you close your browser, you loose it.
> I'm affraid that if you want sessions that last two weeks, you'll have
> to make your own session handler :) but yeah, it's possible, and it
> be
Using the following code;
$fileRead = fopen($fileAtt,'rb');
$fileData = fread($fileRead,filesize($fileAtt));
fclose($fileRead);
$mimeBoundary = "CCALCBoundary";
$headers = "From: "
>
> "André Medeiros" <[EMAIL PROTECTED]> wrote in message
> news:[EMAIL PROTECTED]
> > The point of sessions is that when you close your browser,
> you loose it.
> > I'm affraid that if you want sessions that last two weeks,
> you'll have
> > to make your own session handler :) but yeah, it's po
Jay Blanchard wrote:
[snip]
if($bars == 3)
{
define('BAR', 1);
}
then:
if(BAR)
{
That's an incorrect use for constants. Use variables for that =]
WHY?
[/snip]
Because the constant can be variable in this case. Consider (this is old
school, and we all know that I am the definition of o
Mark Rees wrote:
"André Medeiros" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
The point of sessions is that when you close your browser, you loose it.
I'm affraid that if you want sessions that last two weeks, you'll have
to make your own session handler :) but yeah, it's poss
John Nichel wrote:
Jay Blanchard wrote:
[snip]
if($bars == 3)
{
define('BAR', 1);
}
then:
if(BAR)
{
That's an incorrect use for constants. Use variables for that =]
WHY?
[/snip]
Because the constant can be variable in this case. Consider (this is old
school, and we all know that I
John Nichel wrote:
Jay Blanchard wrote:
[snip]
never want to use a variable to determine a constant
because the variable is not likely to be the same (that is why we call
them variables) on any iteration. Using constants in expressions is OK,
for instance
if(BAR == $foo){
...stuff...
}
But
Jochem Maas wrote:
now that was exactly my reasoning ... but I very much appriciate the input
of the more experienced/older/classically-trained (as apposed to my
completely
-self-taught-not-backed-up-with-any-solid-computer-science-theory-skills)
guys out there (hey Jay it's a compliment ;-)
On 28 Jul 2005, at 14:13, Mark Rees wrote:
Rolling your own session management tool, whilst undoubtedly fun and
satisfying, is hardly an appropriate solution to this type of
enquiry, which
is apparently from someone taking their first steps in web
development.
Unsurprisingly, this is a sit
[snip]
Using the following code;
$fileRead = fopen($fileAtt,'rb');
$fileData = fread($fileRead,filesize($fileAtt));
fclose($fileRead);
[/snip]
PHP had been recompiled on the production server and in the course of
doing so magic quotes was set to
On 7/28/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
> Dotan,
> now _I'm_ sending _you_ multiple copies (last one didn't go to the list by
> mistake!)
>
> php -r '
> echo preg_replace("#the#","a","Then the big bear ate the little cat in the
> north of the woods.",1), "\n";
> '
Wow! It was those h
On Jul 28, 2005, at 9:41 AM, Edward Vermillion wrote:
[snip]
I may be misunderstanding you here, but I don't see why you would
not want to use a variable to define a constant. I do it from
time to time, most common would be in a config document where I'll
check if the page is being acces
[snip]
> I may be misunderstanding you here, but I don't see why you would not
> want to use a variable to define a constant. I do it from time to
time,
> most common would be in a config document where I'll check if the page
> is being accessed via http or https, and define a constant based on
[snip]
> now that was exactly my reasoning ... but I very much appriciate the
input
> of the more experienced/older/classically-trained (as apposed to my
> completely
>
-self-taught-not-backed-up-with-any-solid-computer-science-theory-skills
)
> guys out there (hey Jay it's a compliment ;-)
Jay's
Dotan Cohen wrote:
On 7/28/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
Dotan,
now _I'm_ sending _you_ multiple copies (last one didn't go to the list by
mistake!)
php -r '
echo preg_replace("#the#","a","Then the big bear ate the little cat in the north of the
woods.",1), "\n";
'
Wow! It wa
On 7/28/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
> the hash signs are regexp delimiters - you don't ness. need to use hash signs,
> normally I either use # or / .
>
> some of the examples here http://nl2.php.net/preg_replace use @
>
> in short read this (like 10 times :-):
> http://nl2.php.net/
Hello,
I am trying to get a form to work integrating html with PHP.
the code I have is:
Your Name:< /br>
< /br>
Message:< /br>
";
if ($_POST['op'] !="ds") {
// they need to see the form
echo "$form_block";
} else if ($_POST['op'] =="ds") {
//check value of $_POST['sender name']
if ($_POST
[snip]
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE,
expecting T_STRING or T_VARIABLE or T_NUM_STRING in
/hsphere/local/home/bruceg/inspired-evolution.com/Contact_Form_test.php
on line 58
[/snip]
Send us the first 60 or so lines of the code and we'll see what we can
see. I strong
[snip]
and the error I get is:
Parse error: parse error, unexpected T_ENCAPSED_AND_WHITESPACE,
expecting T_STRING or T_VARIABLE or T_NUM_STRING in
/hsphere/local/home/bruceg/inspired-evolution.com/Contact_Form_test.php
on line 58
[/snip]
I forgot to say that the code you sent does not include 58
From: Bruce Gilbert [mailto:[EMAIL PROTECTED]
> Hello,
>
> I am trying to get a form to work integrating html with PHP.
>
> the code I have is:
>
> $form_block = "
>
> Your Name:< /br>
>
> < /br>
>
> Message:< /br>
>
>
> Form\">
> ";
>
> if ($_POST['op'] !="ds") {
> // they need to see
Can anyone tell me why this adding that to a vhost in apache 1 series
does not work? The docs says you can use enable_dl per vhost.
-Justin Mazzi
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Hello,
Anyone knows a simple calendar program that will let people to add event, and
then after the event is approved by webmaster / moderator, the event would be
added to the calendar ?
Just like the calendar for Upcoming Events on www.php.net. What program is
that ?
I've looked at PHPGrou
Hi
Will HTTP_RAW_POST_DATA (php://input) multipart ever be supported?
I have asked this question a few times and was told it would not happen
until around php 4.3 release. Although I do appreciate the PHP teams added
support for all the other (PUT/POST) methods when dealing with the input
stream,
Reuben D. Budiardja wrote:
> Hello,
> Anyone knows a simple calendar program that will let people to add event, and
> then after the event is approved by webmaster / moderator, the event would be
> added to the calendar ?
>
> Just like the calendar for Upcoming Events on www.php.net. What progr
Hello friends.
How Can I send mail from php in HTML format?.
I use the mail() function, but I dont know doing.somebody can I help me?
Best regards TOMAS
-
Este correo fue escaneado en busca de virus con el MDaemon Antiviru
Thanks for the response ... skype was the problem. took it out
autostartup restarted XAMPP.no problems anymore
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
--- Bruce Gilbert <[EMAIL PROTECTED]> wrote:
> Hello,
>
> I am trying to get a form to work integrating html
> with PHP.
I see a couple problems...
This line:
> if ($POST['sender_email'] =="") {
Should probably be:
if ($_POST['sender_email'] =="") {
Note the underscore in $_POST
Hi everyone,
As you will read below I've got a strange problem happening with some
files after being rsync'd from one machine (FC3) to another (RH9).
Someone in the RedHat mailing list suggested that maybe the difference
was in the configuration files for PHP. I didn't find anything in
php.ini ab
How Can I send mail from php in HTML format?.
I use the mail() function, but I dont know doing.somebody can I help me?
Pear has a package: http://pear.php.net/package/Mail_Mime
Here's an example:
http://pear.php.net/manual/en/package.mail.mail-mime.example.php
-philip
--
PHP General Mailing
Hi
First some of your $_POST array variables are written like $POST['var'], you
need to change them
to $_POST['var']. Then because you are not using the dot operator in your
string variables and you
are using a associative array you must enclose the array variable in
{$arr['var']} tags!
// enclos
Tomás Rodriguez Orta wrote:
Hello friends.
How Can I send mail from php in HTML format?.
I use the mail() function, but I dont know doing.somebody can I help me?
http://www.google.com/search?hl=en&q=php+send+html+email&btnG=Google+Search
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[E
Also Richard Heyes has a updated his class to work with PHP 5, you can also
get updated version of the PHP 4 class!
http://www.phpguru.org/static/htmlMimeMail5.html
Sonia
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
What are you trying to accomplish?
Tom
On 7/28/05, Sonia <[EMAIL PROTECTED]> wrote:
>
> Hi
>
> Will HTTP_RAW_POST_DATA (php://input) multipart ever be supported?
>
> I have asked this question a few times and was told it would not happen
> until around php 4.3 release. Although I do appreciat
Thanks your insightful comments. Clearly scalability is a concern for large
scale applications. One has to be discreet with it if such a facility is
available. For the dictionary example, I feel it definitely can use such a
facility and DB approach is much slower; and scalability/load balancing is
In the example I gave, I mean the whole thing is loaded once, then every
session can use it. Basically it is like a cache, only it is available cross
sessions.
Clearly one can use DB to store data to do that, however, (1)there are
things that are not suitable to store in a DB; (2)DB is over-kille
Hi
Without seeing the clients resulting email it is very hard to see what is
wrong. It could be line endings or a host of other things. Maintaining RFC
2049 standards is important because even though your server might support
one method the client may not support what you are using!
RFC 2049 and
http://eaccelerator.net/HomeUk Will keep scripts cached in memory etc.
Maybe this is along the lines of what you are looking for.
Aiguo Fei wrote:
Thanks your insightful comments. Clearly scalability is a concern for large
scale applications. One has to be discreet with it if such a facility i
Aiguo Fei wrote:
In ASP.Net there is the concept of "application" which is a virtual
directory on a Web server. An application can have application-wide
shared data/objects, which can be accessed by any script of that
application (i.e., scripts under the virtual directory). I have gone
through se
Dotan Cohen wrote:
On 7/28/05, Jochem Maas <[EMAIL PROTECTED]> wrote:
Dotan,
now _I'm_ sending _you_ multiple copies (last one didn't go to the list by
mistake!)
php -r '
echo preg_replace("#the#","a","Then the big bear ate the little cat in the north of the
woods.",1), "\n";
'
Wow! It wa
On Thu, 2005-07-28 at 12:30 -0700, Tomás Rodriguez Orta wrote:
> Hello friends.
>
> How Can I send mail from php in HTML format?.
> I use the mail() function, but I dont know doing.somebody can I help me?
>
>
> Best regards TOMAS
>
>
> --
Aiguo Fei wrote:
> Thanks your insightful comments. Clearly scalability is a concern for large
> scale applications. One has to be discreet with it if such a facility is
> available. For the dictionary example, I feel it definitely can use such a
> facility and DB approach is much slower; and scala
If an ISP does not give you access to php.ini, is there a way to turn
on session.use_trans_sid in the code, maybe at the same time you say
session_start()?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php
Brian Dunning wrote:
If an ISP does not give you access to php.ini, is there a way to turn
on session.use_trans_sid in the code, maybe at the same time you say
session_start()?
http://us2.php.net/ini_set
--
John C. Nichel
ÜberGeek
KegWorks.com
716.856.9675
[EMAIL PROTECTED]
--
PHP Genera
Hi to all:
I have manually installed PHP 5.0.4 on a Windows 2003 server with IIS 6
installed, using ISAPI.
Working with the systems administrator, we set up web site named
phptest. This points to the directory c:\php\www where the .php and
.html pages are stored.
I am wanting to use PHP to inq
I'm starting my sessions like this:
ini_set('session.use_trans_sid','1');
session_start();
Works fine when cookies are on. Sessions are not being preserved when
cookies are off. Is there something else I need to do?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: htt
You can use mail() to send html, but you need to set the headers first.
I hope this helps.
Jeremy Schreckhise
$email_addr = "[EMAIL PROTECTED]";
$email_from = "[EMAIL PROTECTED]";
$email_subj = "About What";
// Set Content-type header
$headers = 'MIME-Version: 1.0' . "\r\n";
$hea
Justin Mazzi wrote:
Can anyone tell me why this adding that to a vhost in apache 1 series
does not work? The docs says you can use enable_dl per vhost.
kinda guesswork, try one of:
php_flag enable_dl 1
php_value enable_dl 1
php_admin_flag enable_dl 1
php_admin_value enable_dl 1
note that, reg
Try looking into IIS's error log. There might be something useful there.
When, for some reason, this happens in apache, for instance, the error
log tells you what went wrong (missing simbol, missing lib, whatever).
Good luck!
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, vis
The following script:
http://www.imakenews.com/progresspsdn/e_rss.aspx',
'http://rssnewsapps.ziffdavis.com/eweekdeveloper.xml',
'http://itpapers.zdnet.com/xml/RSS-239.xml',
'http://rssnewsapps.ziffdavis.com/eweeklinux.xml' );
foreach( $url_
Hi,
I am trying to use a php/mysql based project system (achievo.org), but
when I enter data via the forms, I get a reply "entry has to be unique"
even though it has been written to the db.
Someone said it might be because I have php as cgi rather than a isapi
module and therefore the form rel
The following script:
http://www.imakenews.com/progresspsdn/e_rss.aspx',
'http://rssnewsapps.ziffdavis.com/eweekdeveloper.xml',
'http://itpapers.zdnet.com/xml/RSS-239.xml',
'http://rssnewsapps.ziffdavis.com/eweeklinux.xml' );
foreach( $url_arr
I call red.php through apache http request, and red.php make exec('./s.php')
call, then I got bunch of s.php processes, and system locked me out any task
due to no more processes available. Why this would happen?
marvin:~/liang.ns2user.info/php> less red.php
marvin
Rasmus Lerdorf wrote:
Not much documentation is needed:
if(!$dict = apc_fetch('dict')) {
$dict = function_that_returns_a_dictionary_array_or_object();
apc_store('dict',$dict);
}
That's all. [snip]
-Rasmus
Wow, I should have tried harder to make it work.. thnx !
Evert
--
PHP Gen
I forgot to mention that calling from shell directly s.php runs correctly.
~
marvin:~/liang.ns2user.info/php> ./s.php
This is a PHP-CLI Script!!0123456789
~
The php configuration of this site is:
http://liang.ns2user.info/php/info.php
Thank you i
php_admin_value enable_dl 1 does the trick. Thanks!
Jochem Maas wrote:
Justin Mazzi wrote:
Can anyone tell me why this adding that to a vhost in apache 1 series
does not work? The docs says you can use enable_dl per vhost.
kinda guesswork, try one of:
php_flag enable_dl 1
php_value ena
I made the suggestions mentioned by Mike and don't get any error, but
the form doesn't work properly. Check it out at
http://www.inspired-evolution.com/Contact_Form_test.php
the PHP form CODE I now have is:
Your Name:
Your E-mail Address:
Message:
";
if ($_POST['op'] !="ds") {
// they need
[snip]
I made the suggestions mentioned by Mike and don't get any error, but
the form doesn't work properly. Check it out at
http://www.inspired-evolution.com/Contact_Form_test.php
[/snip]
You never sent the first 60 lines of code or so, and your origianl post
doesn't have 58 lines in it. Please s
I am trying to use windows com objects to interact with the windows registry,
here is my code:
EnumKey("HKEY_LOCAL_MACHINE", $keyPath, $keys);
foreach($keys as $key){
print $key;
}
unset($wshShell);
?>
When I try to run this script, I get an error that PHP (5.04) has crashed.
Here is the entire code on the page. Now I am getting an error again...
http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd";>
http://www.w3.org/1999/xhtml"; xml:lang="en-US"
lang="en-US" dir="ltr">
Form Test>
Skip over navigation
About Me
Skill set
Hire Me
Portfolio
Contact
Résumé
Philip Hallstrom wrote:
$diff = number_format(((substr($timeend,0,9)) +
(substr($timeend,-10)) - (substr($timestart,0,9)) -
(substr($timestart,-10))),4);
This just looks wrong to me... at the very least shouldn't it be:
(x + x) - (x + x)
(x + y) - (w + z) = (x + y) + (-w - z) = x + y - w
I have the following code in my script and no errors are created, but I
do not get any emails. It works on other servers.
Are there some logs I can check to figure out why an email is not being
sent/received?
Todd
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http
Todd Cary wrote:
I have the following code in my script and no errors are created, but I
do not get any emails. It works on other servers.
Are there some logs I can check to figure out why an email is not being
sent/received?
Todd
I think I figured out the problem: the needed port is assign
I have the following code in my script and no errors are created, but I do
not get any emails. It works on other servers.
Are there some logs I can check to figure out why an email is not being
sent/received?
Depends on your setup, but /var/log/maillog in the unix world would be a
good plac
Todd Cary wrote:
I have the following code in my script and no errors are created, but I
do not get any emails. It works on other servers.
Are there some logs I can check to figure out why an email is not being
sent/received?
Todd
Whoops...forgot the code:
if (mail("[EMAIL PROTECTED]", "
Hi,
because that last topic on multipage forms was so exciting, I decided to
database the questions as well. I wonder if anyone can help me with a
function to pull rows into dropdown boxes.
It's a 1:n relationship between questions and answers, and I have a
table of questions
q_id
q_name
q_
Pasting your page onto my server and commenting out your includes the
following lines stand out:
$email_err ="Please enter your email address!";
$message_err = "Please enter a message!";
You have quotes within quotes here. You should either escape the inner
quotes or use single quotes to defin
maybe NTFS permissions on php.ini?
--
Louis Solomon
www.SteelBytes.com
""Harris, Walter"" <[EMAIL PROTECTED]> wrote in message
news:[EMAIL PROTECTED]
Hi to all:
I have manually installed PHP 5.0.4 on a Windows 2003 server with IIS 6
installed, using ISAPI.
Working with the systems administra
1 - 100 of 107 matches
Mail list logo