Re: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-14 Thread Jason G.

try this..

?
if(true)
{
 ?
 Raw html code here for
 as long as
 you want
 ?
}
else
{
 ?
 More
 Raw
 Html
 Code
 Here
 ?
}


I believe that this feature is way underutilized by php developers.  Tying 
all your html up in echo or print statements is a mess to say the least.

-Jason Garber
IonZoft.com


At 05:13 PM 11/13/2001 -0800, Brad Melendy wrote:
Ok, I figured out that just using echo seems to be the best way to do this
under PHP.  In ASP, you can end your code block and start in with HTML, but
I couldn't get that to work with PHP.  However, I was able to just use the
echo statement to get the conditional HTML I wanted to show up when the
proper condition was met in the If Else statement.

Brad

Brad Melendy [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  Hello,
  I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
  something like:
 
  ?php
  if (strstr($DomResults,$Match))
  print Congratulations!  $domain.$suffix is available!;
  ?
  form method=POST action=step2.asp name=form2
pinput type=submit value=Register name=B1/p
  /form
 
  ?php
 else
  print Sorry, $domain.$suffix is already taken.;
  ?
 
  Basically, it works great without the form I'm trying to insert, but with
  the form after the IF statement, it fails.  Is what I want to do against
the
  rules?  I'm converting an ASP script I have to PHP and I have it all
working
  under ASP.  That means it should be eaiser with PHP right?  ;-)  Thanks in
  advance.
 
  ...Brad
 
 



--
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]


-- 
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]




Re: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-14 Thread Dan McCullough

If someone has already replied to this I apploigize for a double post.
You need to put in brackets after the if statement and end bracket before the else and 
then
another open after the else, lastly you need to close with a bracket.

Example:
  ?php
  if (strstr($DomResults,$Match)) {
  print Congratulations!  $domain.$suffix is available!;
  ?
  form method=POST action=step2.asp name=form2
pinput type=submit value=Register name=B1/p
  /form
 
  ?php
 } else {
  print Sorry, $domain.$suffix is already taken.;
  }?

I hope this help.  PHP is pretty easy, its just some differences that you need to get 
used to. 
Good luck.
--- Brad Melendy [EMAIL PROTECTED] wrote:
 Ok, I figured out that just using echo seems to be the best way to do this
 under PHP.  In ASP, you can end your code block and start in with HTML, but
 I couldn't get that to work with PHP.  However, I was able to just use the
 echo statement to get the conditional HTML I wanted to show up when the
 proper condition was met in the If Else statement.
 
 Brad
 
 Brad Melendy [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
  Hello,
  I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
  something like:
 
  ?php
  if (strstr($DomResults,$Match))
  print Congratulations!  $domain.$suffix is available!;
  ?
  form method=POST action=step2.asp name=form2
pinput type=submit value=Register name=B1/p
  /form
 
  ?php
 else
  print Sorry, $domain.$suffix is already taken.;
  ?
 
  Basically, it works great without the form I'm trying to insert, but with
  the form after the IF statement, it fails.  Is what I want to do against
 the
  rules?  I'm converting an ASP script I have to PHP and I have it all
 working
  under ASP.  That means it should be eaiser with PHP right?  ;-)  Thanks in
  advance.
 
  ...Brad
 
 
 
 
 
 -- 
 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]
 


=
Dan McCullough
---
Theres no such thing as a problem unless the servers are on fire!
h: 603.444.9808
w: McCullough Family
w: At Work

__
Do You Yahoo!?
Find the one for you at Yahoo! Personals
http://personals.yahoo.com

-- 
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]




Re: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-14 Thread Papp Gyozo

Nonetheless sometimes it is more efficient to use a template engine.
(IMHO)

Papp Gyozo
- [EMAIL PROTECTED]

- Original Message - 
From: Jason G. [EMAIL PROTECTED]
To: Brad Melendy [EMAIL PROTECTED]; [EMAIL PROTECTED]
Sent: Wednesday, November 14, 2001 1:33 PM
Subject: Re: [PHP] Re: Can If Else statements be split into code blocks??


 try this..
 
 ?
 if(true)
 {
  ?
  Raw html code here for
  as long as
  you want
  ?
 }
 else
 {
  ?
  More
  Raw
  Html
  Code
  Here
  ?
 }
 
 
 I believe that this feature is way underutilized by php developers.  Tying 
 all your html up in echo or print statements is a mess to say the least.
 
 -Jason Garber
 IonZoft.com
 
 
 At 05:13 PM 11/13/2001 -0800, Brad Melendy wrote:
 Ok, I figured out that just using echo seems to be the best way to do this
 under PHP.  In ASP, you can end your code block and start in with HTML, but
 I couldn't get that to work with PHP.  However, I was able to just use the
 echo statement to get the conditional HTML I wanted to show up when the
 proper condition was met in the If Else statement.
 
 Brad
 
 Brad Melendy [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
   Hello,
   I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
   something like:
  
   ?php
   if (strstr($DomResults,$Match))
   print Congratulations!  $domain.$suffix is available!;
   ?
   form method=POST action=step2.asp name=form2
 pinput type=submit value=Register name=B1/p
   /form
  
   ?php
  else
   print Sorry, $domain.$suffix is already taken.;
   ?
  
   Basically, it works great without the form I'm trying to insert, but with
   the form after the IF statement, it fails.  Is what I want to do against
 the
   rules?  I'm converting an ASP script I have to PHP and I have it all
 working
   under ASP.  That means it should be eaiser with PHP right?  ;-)  Thanks in
   advance.
  
   ...Brad
  
  
 
 
 
 --
 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]
 
 
 -- 
 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]
 



[PHP] Re: Can If Else statements be split into code blocks??

2001-11-13 Thread Brad Melendy

Ok, I figured out that just using echo seems to be the best way to do this
under PHP.  In ASP, you can end your code block and start in with HTML, but
I couldn't get that to work with PHP.  However, I was able to just use the
echo statement to get the conditional HTML I wanted to show up when the
proper condition was met in the If Else statement.

Brad

Brad Melendy [EMAIL PROTECTED] wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
 Hello,
 I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
 something like:

 ?php
 if (strstr($DomResults,$Match))
 print Congratulations!  $domain.$suffix is available!;
 ?
 form method=POST action=step2.asp name=form2
   pinput type=submit value=Register name=B1/p
 /form

 ?php
else
 print Sorry, $domain.$suffix is already taken.;
 ?

 Basically, it works great without the form I'm trying to insert, but with
 the form after the IF statement, it fails.  Is what I want to do against
the
 rules?  I'm converting an ASP script I have to PHP and I have it all
working
 under ASP.  That means it should be eaiser with PHP right?  ;-)  Thanks in
 advance.

 ...Brad





-- 
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]




Re: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-13 Thread David Robley

On Wed, 14 Nov 2001 11:43, Brad Melendy wrote:
 Ok, I figured out that just using echo seems to be the best way to do
 this under PHP.  In ASP, you can end your code block and start in with
 HTML, but I couldn't get that to work with PHP.  However, I was able to
 just use the echo statement to get the conditional HTML I wanted to
 show up when the proper condition was met in the If Else statement.

 Brad

 Brad Melendy [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

  Hello,
  I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
  something like:
 
  ?php
  if (strstr($DomResults,$Match))
  print Congratulations!  $domain.$suffix is available!;
  ?
  form method=POST action=step2.asp name=form2
pinput type=submit value=Register name=B1/p
  /form
 
  ?php
 else
  print Sorry, $domain.$suffix is already taken.;
  ?
 
  Basically, it works great without the form I'm trying to insert, but
  with the form after the IF statement, it fails.  Is what I want to do
  against

 the

  rules?  I'm converting an ASP script I have to PHP and I have it all

 working

  under ASP.  That means it should be eaiser with PHP right?  ;-) 
  Thanks in advance.
 
  ...Brad

You can drop in and out of php parsing, even in a control structure. So 
something like

?php
if($this == 'that') {
?
H2That/H2
?php
} else{
?
H2The Other/H2
?php
}
?

will work just fine.
-- 
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA  

   Stop talking! I'm out of aspirin!

-- 
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]




RE: [PHP] Re: Can If Else statements be split into code blocks??

2001-11-13 Thread Jack Dempsey

David's correct. The reason it wasn't working for you is that you didn't put
braces around the code you wanted executed in the if statement. Also, to
output large chunks of html in a simple manner with variables included, look
into here docs. They look like this:


echoEOF
This is html with a $variable in it.
EOF;

jack

-Original Message-
From: David Robley [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, November 13, 2001 8:21 PM
To: Brad Melendy; [EMAIL PROTECTED]
Subject: Re: [PHP] Re: Can If Else statements be split into code
blocks??


On Wed, 14 Nov 2001 11:43, Brad Melendy wrote:
 Ok, I figured out that just using echo seems to be the best way to do
 this under PHP.  In ASP, you can end your code block and start in with
 HTML, but I couldn't get that to work with PHP.  However, I was able to
 just use the echo statement to get the conditional HTML I wanted to
 show up when the proper condition was met in the If Else statement.

 Brad

 Brad Melendy [EMAIL PROTECTED] wrote in message
 [EMAIL PROTECTED]">news:[EMAIL PROTECTED]...

  Hello,
  I'm trying to execute some HTML in an IF ELSE statement.  I'm trying
  something like:
 
  ?php
  if (strstr($DomResults,$Match))
  print Congratulations!  $domain.$suffix is available!;
  ?
  form method=POST action=step2.asp name=form2
pinput type=submit value=Register name=B1/p
  /form
 
  ?php
 else
  print Sorry, $domain.$suffix is already taken.;
  ?
 
  Basically, it works great without the form I'm trying to insert, but
  with the form after the IF statement, it fails.  Is what I want to do
  against

 the

  rules?  I'm converting an ASP script I have to PHP and I have it all

 working

  under ASP.  That means it should be eaiser with PHP right?  ;-)
  Thanks in advance.
 
  ...Brad

You can drop in and out of php parsing, even in a control structure. So
something like

?php
if($this == 'that') {
?
H2That/H2
?php
} else{
?
H2The Other/H2
?php
}
?

will work just fine.
--
David Robley  Techno-JoaT, Web Maintainer, Mail List Admin, etc
CENTRE FOR INJURY STUDIES  Flinders University, SOUTH AUSTRALIA

   Stop talking! I'm out of aspirin!

--
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]



-- 
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]