Wrox Home  
Search P2P Archive for: Go

  Return to Index  

pro_php thread: pro_php:Escaping within escaped


Message #1 by "Ruth Nisenbaum" <ruthnis@0...> on Fri, 23 Feb 2001 06:59:24 +0200
>Subject: Re: Escaping within Escaped?
Hi:

You can still have code without echoing it, simply what is outside the <?php
?> symbols is straight HTML.

You can also call a PHP variable from inside HTML:

<?php
$a='5';
?>

<table><tr><td>The value of a is <?php $a ?></td></tr></table>



  Return to Index