HTML Cohabitation HTML File HTML Font HTML String Hyperlink HTML Utilities: PageBreeze Form Builder. Free for personal use.(Windows) Forms To Go by BEBO Soft. Create form-to-email scripts in PHP, ASP or Perl for your HTML forms. MacOS X or Windows. …

HTML Color Read more »

FORM Form Action action=”<?php echo $_SERVER[‘PHP_SELF’]; ?>” action=”<?php echo $PHP_SELF ?>” <form method=”POST” action=”<?php echo $SCRIPT_NAME ?>”> <html><body> <form METHOD=”POST” ACTION=”GetFormValue.php”> Name: <input TYPE=”TEXT” NAME=”Name”/> Memo: <textarea NAME=”Comment” ROWS=”4″ COLS=”40″ WRAP=”PHYSICAL”> </textarea> <input TYPE=”SUBMIT”/> </form></body> <!– GetFormValue.php –> <?php echo …

PHP Read more »

Mit Perl und DBI + DBD-Oracle können unter z.B Oracle Datenbanken und viele andere Datenbanken angebunden werden und wird meistens für kleinere Projekte verwendet. Alle Module DBD-* und die Module für den anderen Datenbanken (Ingres, Informix, Adabas, uvam.) stehen im …

Perl DBD and DBI Oracle Read more »

The Perl symbolic debugger is invoked with perl -d. h    Prints out a help message. T    Prints a stack trace. s    Single steps. n    Single steps around subroutine call. RETURN key    Repeats last s or n. r    Returns form the …

Perl Debugger Read more »

File Test Operators -r -w -x  File is readable/writable/executable by effective uid/gid. next unless -f $file; if(-r “test.pl”) { print “readable\n” } -R -W -X File is readable/writable/executable by real uid/gid. -o -O File is owned by effective/real uid. -e …

Perl File/Dir Operations Read more »

Special Variables The following variables are global and should be localized in subroutines: $_ The default input and pattern-searching space. $. The current input line number of the last filehandle that was read. $/ The input record separator, newline by …

PERL Read more »

remove all lines from a file: perl -p -i.bak -e ’s#^\*X-something.*\n$##g’ $filename (remove *X-something.*\n) perl -p -n -i.bak -e ’s/^\*X-pol.*\n$//g’ $filename perl -p -n -i.bak -e ’s/\r\n/\n/’ $filename awk ‘{print $3}’ $filename Regular Expressions .    matches an arbitrary character, but …

Perl Search/Replace Read more »