Connecting Tech Pros Worldwide Forums | Help | Site Map

php ignoring code after greater than sybmol

dennis.mcknight@gmail.com
Guest
 
Posts: n/a
#1: Aug 18 '06
new to php -- please help.

it seems like php is treating any '>' character as the end of my code
segment, even when it's embedded in a string, as shown

<?
$s="THIS IS MY TEST STRING";
?>

please advise -- it seems like something stupid. i'm running with PHP
5.1.4 + PECL on Apache 2.0.58.

thanks!


Jerry Stuckle
Guest
 
Posts: n/a
#2: Aug 18 '06

re: php ignoring code after greater than sybmol


dennis.mcknight@gmail.com wrote:
Quote:
new to php -- please help.
>
it seems like php is treating any '>' character as the end of my code
segment, even when it's embedded in a string, as shown
>
<?
$s="THIS IS MY TEST STRING";
?>
>
please advise -- it seems like something stupid. i'm running with PHP
5.1.4 + PECL on Apache 2.0.58.
>
thanks!
>
Are you sure it's ignoring anything after the '>'? Or is in not working
because short tags is off?

Try using <?php to start your PHP code instead.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
dennis.mcknight@gmail.com
Guest
 
Posts: n/a
#3: Aug 18 '06

re: php ignoring code after greater than sybmol


it was the short tags thing. i found it in php.ini.

thanks!!!


Jerry Stuckle wrote:
Quote:
dennis.mcknight@gmail.com wrote:
Quote:
new to php -- please help.

it seems like php is treating any '>' character as the end of my code
segment, even when it's embedded in a string, as shown

<?
$s="THIS IS MY TEST STRING";
?>

please advise -- it seems like something stupid. i'm running with PHP
5.1.4 + PECL on Apache 2.0.58.

thanks!
>
Are you sure it's ignoring anything after the '>'? Or is in not working
because short tags is off?
>
Try using <?php to start your PHP code instead.
>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
Jerry Stuckle
Guest
 
Posts: n/a
#4: Aug 18 '06

re: php ignoring code after greater than sybmol


dennis.mcknight@gmail.com wrote:
Quote:
it was the short tags thing. i found it in php.ini.
>
thanks!!!
>
>
Jerry Stuckle wrote:
>
Quote:
>>dennis.mcknight@gmail.com wrote:
>>
Quote:
>>>new to php -- please help.
>>>
>>>it seems like php is treating any '>' character as the end of my code
>>>segment, even when it's embedded in a string, as shown
>>>
>>><?
>>>$s="THIS IS MY TEST STRING";
>>>?>
>>>
>>>please advise -- it seems like something stupid. i'm running with PHP
>>>5.1.4 + PECL on Apache 2.0.58.
>>>
>>>thanks!
>>>
>>
>>Are you sure it's ignoring anything after the '>'? Or is in not working
>>because short tags is off?
>>
>>Try using <?php to start your PHP code instead.
>>
>>--
>>==================
>>Remove the "x" from my email address
>>Jerry Stuckle
>>JDS Computer Training Corp.
>>jstucklex@attglobal.net
>>==================
>
>
NP.

It's not a good idea to run with short tags on. For one thing, it will
conflict with XML code.

Also, please don't top post. This group uses bottom posting as a standard.

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================
raedmsh@gmail.com
Guest
 
Posts: n/a
#5: Aug 19 '06

re: php ignoring code after greater than sybmol


also you should use &gt; instead of specially in xhtml pages

Closed Thread