Difference between revisions of "CP2132"

From mi-linux
Jump to navigationJump to search
Line 9: Line 9:
 
<source lang="php">
 
<source lang="php">
 
<?php
 
<?php
phpinfo();
+
  phpinfo();
 +
  print (substr($variable,1,2));
 
?>
 
?>
 
</source>
 
</source>

Revision as of 09:52, 27 January 2009

Main Page >> Web Frameworks

The module aims to provide an in depth understanding of the use of web frameworks and the common tools and methods used to manipulate web based data and serve data via Web Services to net based clients.

<source lang="php"> <?php

 phpinfo();
 print (substr($variable,1,2));

?> </source>