"Poe_Session", "auth" => "Poe_Auth")); $dbText = new DB_Poe; $dbText->connect(); ?> query($query); $dbText->next_record(); $TextID = $dbText->f("TextID"); break; case("Modify"): $query = sprintf("UPDATE Text SET TextID='%s', Name='%s', Text='%s', PageID='%s' WHERE TextID='%s'", $TextID, addslashes(trim($Name)), addslashes(trim($Text)), addslashes(trim($PageID)), $TextID); $dbText->query($query); $query="SELECT * FROM Text where TextID='$TextID'"; $dbText->query($query); $dbText->next_record(); unset($TextID); break; case("Delete"): $query="DELETE FROM Text WHERE TextID='$TextID'"; $dbText->query("$query"); unset($TextID); break; case("Add"): $Query_String = sprintf("INSERT INTO Text VALUES(NULL,'%s','%s','%s')",addslashes(trim($Name)), addslashes(trim($Text)), addslashes(trim($PageID))); $dbText->query($Query_String); break; }//switch ?> Modify Text
Text Modification

query($TextQuery); ?>
Text:
Home page =1    Property Search=2    Whats Happening =3
query($query); $dbText->next_record(); } ?>
Title: " SIZE="50" MAXLENGTH="70" >
Text:
Page: " SIZE="3" MAXLENGTH="70" > Place the nmber of the Page you would like this text to show up in
"> Text has been modified!\n" : ""); ?>
Administration

Back to top How to copy and paste
1. Highlight the text: Click on the beginning of the text, hold down the left mouse button and drag to the end of the text.

2. Copy the text: You may use the keyboard shortcut listed below or you can right click on your mouse and select COPY.

3. Paste the Text: First click where you would like the text to be then you may use the keyboard shortcuts listed below or you can right click on your mouse and select PASTE.

Back to top Keyboard Shortcuts
COPY: If you hold down the Ctrl key and press C, you will copy the highlighted text.

PASTE: If you hold down the Ctrl key and press V, you will paste the text you copied.

UNDO: If you hold down the Ctrl key and press Z, you will undo the last action you did.

DELETE: If you hold down the Ctrl key and press X, you will delete any highlighted text.


Back to top bold Place the words between the bold tags like the example below
<b>Your Text</b>

Back to top Italic Place the words between the italic tags like the example below
<i>Your Text</i>

Back to top underlined Place the words between the underline tags like the example below
<u>Your Text</u>

Back to top Font Size Place the words between the font tags like the example below
<font face="arial" size="2">Your Text</font>

Size 2 is the standard in font size but you can use numbers 1- 6, 6 being the largest.
Note: face="arial" is stating that your font will be arial. If you do not use this in the line, your font will be different then the rest of the site.
Back to top Font Color Place the words between the font tags like the example below
<font face="arial" size="2" color="red">Your Text</font>

Here the color specified is red but you can use almost any color or combinations of dark and light ex: darkred, lightblue, darkgreen, etc.
Note: not all colors will work, lightred will not work, you will need to use pink. The combinations are too long to list here so you will need to experiment with it, but most common colors will work.