XAMPP settings with plain-text configuration files

You adjust XAMPP settings with plain-text configuration files. The following files exist: Apache basic configuration: .\xampp\apache\conf\httpd.conf Apache SSL: .\xampp\apache\conf\ssl.conf Apache Perl (only addon): .\xampp\apache\conf\perl.conf Apache Tomcat (only addon): .\xampp\apache\conf\java.conf Apache Python (only addon): .\xampp\apache\conf\python.conf PHP: .\xampp\apache\bin\php.ini (with the apache actually running php version) MySQL: .\xampp\mysql\bin\my.cnf phpMyAdmin: .\xampp\phpMyAdmin\config.inc.php FileZilla FTP: .\xampp\FileZillaFTP\FileZilla Server.xml Mercury Mail basic configuration: …

PHP headers

// See related links for more status codes // Use this header instruction to fix 404 headers // produced by url rewriting… header(‘HTTP/1.1 200 OK’); // Page was not found: header(‘HTTP/1.1 404 Not Found’); // Access forbidden: header(‘HTTP/1.1 403 Forbidden’); // The page moved permanently should be used for // all redrictions, because search engines …

PHP array Form Post

Form Code <label> <input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisoteri ergasia” /> Με περισσότερη εργασία</br><br> </label>           <label><input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisotero Pragramatismo” /> Με περισσότερο προγραμματισμό</br><br> </label> <label> <input type=”checkbox” name=”oik_stoxoi[]” id=”ergasia” value=”Me perisoteri tolmi” />Mε περισσότερη τόλμη</label> PHP action Code <?php for ($i=0; $i<count($_POST[‘oik_stoxoi’]); $i++){  $assistivetech_req .= addslashes($_POST[‘oik_stoxoi’][$i].” – “);  //do this  //echo $assistivetech_req; …