Author: glorieux Date: 2009-12-24 10:25:54 +0100 (Thu, 24 Dec 2009) New Revision: 427 Added: trunk/testphp/ trunk/testphp/index.php trunk/testphp/nbproject/ trunk/testphp/nbproject/project.properties trunk/testphp/nbproject/project.xml Log: Test Added: trunk/testphp/index.php =================================================================== --- trunk/testphp/index.php (rev 0) +++ trunk/testphp/index.php 2009-12-24 09:25:54 UTC (rev 427) @@ -0,0 +1,21 @@ +<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> + <head> + <title>Ceci est une page de test avec des balises PHP</title> + <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> + </head> + <body> + <h2>Page de test</h2> + <?php + $userInfo = array ( + + ); + displayInfo($userInfo); + function displayInfo ($userInfo) { + echo "Les infos sont : <br/>"; + echo $userInfo['name']."<br/>"; + echo $userInfo['surname']."<br/>"; + echo $userInfo['phoneNumber']."<br/>"; + } + ?> + </body> +</html> \ No newline at end of file Property changes on: trunk/testphp/nbproject ___________________________________________________________________ Added: svn:ignore + private Added: trunk/testphp/nbproject/project.properties =================================================================== --- trunk/testphp/nbproject/project.properties (rev 0) +++ trunk/testphp/nbproject/project.properties 2009-12-24 09:25:54 UTC (rev 427) @@ -0,0 +1,6 @@ +include.path=${php.global.include.path} +source.encoding=UTF-8 +src.dir=. +tags.asp=false +tags.short=true +web.root=. Added: trunk/testphp/nbproject/project.xml =================================================================== --- trunk/testphp/nbproject/project.xml (rev 0) +++ trunk/testphp/nbproject/project.xml 2009-12-24 09:25:54 UTC (rev 427) @@ -0,0 +1,9 @@ +<?xml version="1.0" encoding="UTF-8"?> +<project xmlns="http://www.netbeans.org/ns/project/1"> + <type>org.netbeans.modules.php.project</type> + <configuration> + <data xmlns="http://www.netbeans.org/ns/php-project/1"> + <name>testphp</name> + </data> + </configuration> +</project>