php-windows Digest 30 Jul 2001 08:41:01 -0000 Issue 675 Topics (messages 8550 through 8559): Re: test it please 8550 by: G Schneider array problem?? 8551 by: delol.2k.php¤¤.. 8552 by: Rasmus Lerdorf 8553 by: delol.2k.php¤¤.. 8554 by: Mike Flynn 8555 by: delol.2k.php¤¤.. PHP and Soap 8556 by: Mike 8557 by: Shane Caraveo Search Engine Friendly URLs 8558 by: Customer Service Re: php-newbie is wondering ... 8559 by: Joel Administrivia: To subscribe to the digest, e-mail: [EMAIL PROTECTED] To unsubscribe from the digest, e-mail: [EMAIL PROTECTED] To post to the list, e-mail: [EMAIL PROTECTED] ----------------------------------------------------------------------
Maybe I should clarify: What I would like is for someone to *download the source code* and then try it out on *their own* server. I already know that it works on my server. I'm just not sure about others. Thanks! "G Schneider" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi, > > I've written a PHP guestbook with the slight twist of it not requiring a > database. Anyway, I would appreciate it if someone would download the source > code, and then try it out on their own server. I am asking this because I > tried it on f2s.com (a free PHP webspace provider) and it did nothing but > spout error messages - complaining that safe mode was on. But safe mode is > on in my other sites and it works fine! > > Weird. > > Anyway, you can download the code from this address: > http://www.webmastersdog.com/PHPapps/guestbook/guestbook.php > > Please tell me if it does or does not work + plus any error messages AND > please tell me the version of PHP you are using (this was built under 4.0.6) > otherwise the information you give me will be useless. Thanks! > > > ++++++++++++++++++++++++++++++++++++++++ > http://www.webmastersdog.com > where website owners go. and talk about stuff. > ++++++++++++++++++++++++++++++++++++++++ > >
<?php $a = array("a","b","c"); for ($c=0 ; $c < count($a) ; ++$c);{ echo("$a[$c] <BR>\n"); } ?> I suppose it should be display ~~~~~~~~~~~~~~~~~~ a b c ~~~~~~~~~~~~~~~~~~ but it doesn't work, pls help. the emtpy page was displayed.
On Mon, 30 Jul 2001, delol@2k@php¤¤.. wrote: > <?php > $a = array("a","b","c"); > > > for ($c=0 ; $c < count($a) ; ++$c);{ Get rid of the ; there ^^^ -Rasmus
oh..... thx for yr help....^_^ "Rasmus Lerdorf" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > On Mon, 30 Jul 2001, delol@2k@php¤¤.. wrote: > > > <?php > > $a = array("a","b","c"); > > > > > > for ($c=0 ; $c < count($a) ; ++$c);{ > > Get rid of the ; there ^^^ > > -Rasmus >
At 11:32 AM 7/29/01 -0700, Rasmus Lerdorf wrote: > > <?php > > $a = array("a","b","c"); > > > > for ($c=0 ; $c < count($a) ; ++$c);{ > >Get rid of the ; there ^^^ Also, echo("$a[$c] <BR>\n"); will probably not work. Try: echo $a[$c]."<br>\n"; or, using your syntax, echo($a[$c]."<br>\n"); You may want to do $c++ rather than ++$c, if only to get into the habit of thinking along the proper lines of pre- and post- incrementing. -Mike
O.....thank for yr help..^_^ "Mike Flynn" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > At 11:32 AM 7/29/01 -0700, Rasmus Lerdorf wrote: > > > <?php > > > $a = array("a","b","c"); > > > > > > for ($c=0 ; $c < count($a) ; ++$c);{ > > > >Get rid of the ; there ^^^ > > Also, > echo("$a[$c] <BR>\n"); > will probably not work. > Try: > echo $a[$c]."<br>\n"; > or, using your syntax, echo($a[$c]."<br>\n"); > You may want to do $c++ rather than ++$c, if only to get into the habit of > thinking along the proper lines of pre- and post- incrementing. > > -Mike > >
Where can I find examples of PHP SOAP at. Cheers M;)
http://www.gigaideas.com.cn/phpsoap/ Mike wrote: > > Where can I find examples of PHP SOAP at. > > Cheers > > M;) > > -- > PHP Windows 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]
Hi, Is there a way to have Search Engine friendly URL using php 4.01 on IIS5? Thanks in Advance Qasim
Hi Hagen, Get Argosoft Mail Server (Freeware) from http://www.argosoft.com/ The Free version is an SMTP server. The open the php.ini file and change the location of the SMTP mail server to 'localhost'. Once you do that, you can use the mail() function. make sure argo soft mail server is running while you're executing your PHP script. You could postcast server from http://www.postcastserver.com/ if you don't like ArgoSoft's mail server. Good luck, -- Joel Agnel [EMAIL PROTECTED] "Hagen MöBius" <[EMAIL PROTECTED]> wrote in message [EMAIL PROTECTED]">news:[EMAIL PROTECTED]... > Hi all! > > I was really wondering wether there is any way to make the mail(..) function > working with a W2K-IIS System. Can anybody help me please?? > > thanks in advance ... Hagen > >