Skip to content

Commit 7339ce4

Browse files
committed
project changes
1 parent bda5c1d commit 7339ce4

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

debug.php

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
<?php
2+
require_once(__DIR__ . "/berry/utils.php"); // Include berry utils package
3+
4+
// Initialize an HTMLHelper
5+
$htmlHelper = new HTMLHelper();
6+
7+
$string = "PHP-Berry framework for PHP backend applications";
8+
9+
// Convert $string to url friendly and print it
10+
print $htmlHelper->URLFriendly($string);
11+
?>

nbproject/private/private.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
11
<?xml version="1.0" encoding="UTF-8"?>
22
<project-private xmlns="http://www.netbeans.org/ns/project-private/1">
33
<editor-bookmarks xmlns="http://www.netbeans.org/ns/editor-bookmarks/2" lastBookmarkId="0"/>
4+
<open-files xmlns="http://www.netbeans.org/ns/projectui-open-files/2">
5+
<group>
6+
<file>file:/C:/Development/php-berry/berry/utils/HTMLHelper.php</file>
7+
<file>file:/C:/Development/php-berry/debug.php</file>
8+
</group>
9+
</open-files>
410
</project-private>

0 commit comments

Comments
 (0)