Click on one of the following items to see a simple demo of how HTML, CSS and Javascript/Jquery work together.
DokuWiki Useful Links
To check php version: doku.php?do=check DokuWiki environment variables https://www.dokuwiki.org/devel:environment Tutorial for beginners http://tech.surveypoint.com/posts/dokuwiki-tutorial-part-1-install-and-first-pages/ Syntax https://www.dokuwiki.org/wiki:syntax Code Reference http://xref.dokuwiki.org/reference/dokuwiki/nav.html?index.html Export Export
PHP 5 File Upload and Unzip
Good file upload example: http://www.w3schools.com/php/php_file_upload.asp Use ZipArchive to unzip uploaded zip file. See this link: http://stackoverflow.com/questions/8889025/unzip-a-file-with-php
Foxpro Database Commands
A good discussion on Foxpro ODBC driver connection string https://www.berezniker.com/content/pages/visual-foxpro/visual-foxpro-odbc-driver How to pack a table through Foxpro ODBC driver https://support.microsoft.com/en-us/kb/234756
MAMP and XAMPP
MAMP The web server (Apache) starts by default on port 8888, the database server (MySQL) on port 8889. When calling
Win32::OLE
For Excel: To Open a Spread Sheet: my $Excel = Win32::OLE->GetActiveObject(‘Excel.Application’) || Win32::OLE->new(‘Excel.Application’, \&QuitApp); sub QuitApp { my ($ComObject)=
Perl TKx
Tutorial link: http://www.tkdocs.com/tutorial Widgets: Frame: $frame = $parent->new_ttk__frame; Padding: $frame->configure(-padding => “5 10”) Borders: $frame->configure(-borderwidth => 2, -relief =>
Useful Windows Commands
The following works for Windows 8 Windows Sysinternals process explorer. Much more detailed than the task manager. https://technet.microsoft.com/en-us/sysinternals/bb896653.aspx Display path
Perl quick start
Installation I use ActivePerl on Windows. After installing Perl, open up a cmd prompt. Execute cpan.bat from c:\Perl\bin or the
Perl ODBC
Perl ODBC access to Foxpro requires the Win32::ODBC module. Add this module using cpan. Here’s a link to help on