• Home
    • Payments
  • Tools
    • Color Chart
  • Software
    • Windows tricks
      • Windows 11 Speed Up Tricks
      • Windows Command Prompt CMD
    • Android Phone
      • Android – Dangerous Settings to Turn Off
    • Projects
      • Copy Files
      • Php Autoscript
      • Web Tools
  • Notes
    • How to Code
    • System Tips
  • News
    • Comparing SSD to HDD

How to Code

ACCESS 2022 | Browsers | Css | Htacess | Html | Html5 | Javascript | Microsoft Excel | Mysql | Mysql Dumps | Php | Vb.net | VBscript | Windows <=8 | Windows >=10 | WP | WP Plugin | WP Themes | _Misc Software |

ABCDEFGHIJKLMNOPQRSTUVWXYZ
ON
PRT
OFF

<- Look Inside Data
Conditions:
Order:
1|2|3|4|5|6|7|8|
50 Language Operation Title
Keywords
Application
Code Languageid
Show Html
Show Iframe
Make Public
Viewed
Viewed Date
Php Archive Backup Of Model Filter List
view2 model filter
Filter List By Model
Php



0
09/05/2026
Microsoft Excel Formatting Cleaning Table Row Cells Using Vba
clean clear cells table
Crop Production Xls
Sub ClearRowBasedOnValue()
Dim tbl As ListObject
Dim i As Long

' Set the table object (Replace "Table1" with your actual table name)
Set tbl = ActiveSheet.ListObjects("Table1")

' Loop through the rows from bottom to top
For i = tbl.ListRows.Count To 1 Step -1
' Check if the cell in a specific column (e.g., "Status") matches your criteria
If tbl.ListRows(i).Range(1, tbl.ListColumns("Status").Index).Value = "Clear" Then

' Clear specific cells in that row by column name
tbl.ListRows(i).Range(1, tbl.ListColumns("Data1").Index).ClearContents
tbl.ListRows(i).Range(1, tbl.ListColumns("Data2").Index).ClearContents

' Alternatively, clear a range of columns in that row
' tbl.ListRows(i).Range.ClearContents
End If
Next i
End Sub



Sub ClearRowConstantsByFilter()
Dim tbl As ListObject
Dim row As Range
Dim filterCriteria As String

' Set your table name
Set tbl = ActiveSheet.ListObjects("Table1")

' Define what value you are looking for to trigger the clear
filterCriteria = "DeleteMe"

' Loop through each row in the table's data area
For Each row In tbl.ListObject.DataBodyRange.Rows
' "Filter" check: Only act if the first column matches our criteria
If row.Cells(1, 1).Value = filterCriteria Then
On Error Resume Next ' Avoid error if no constants exist in the row
' Clear everything in the row EXCEPT formulas
row.SpecialCells(xlCellTypeConstants).ClearContents
On Error GoTo 0
End If
Next row
End Sub
Microsoft Excel



0
05/21/2026
Microsoft Excel Customizing Creating Ranges In Excel
range
Crops
Quick Methods to Name Ranges
Method 1: Using the Name Box (Fastest)

  1. Select the cells or range you want to name.
  2. Click into the Name Box (the empty box just to the left of the formula bar).
  3. Type a name (remember: no spaces or special characters are allowed; use underscores instead of spaces, like Total_Sales).
  4. Press Enter to save the name.
Microsoft Excel



0
05/18/2026
Php Internet Drag And Drop File Upload
drag drop upload
Uplioad
Php



0
06/27/2026
_Misc Software Archive Dumps Of Code
dump archive save
Developer
_Misc Software



0
07/06/2026
Php Archive Hempdbase Code Saved
hemp potency importPDF
Php



0
06/04/2026
Php Archive Make Alpha Customer List
customer list alpha href
Invoices Project
Php



0
07/28/2026
_Misc Software Customizing Menu Commands
media timeline
Devinchi Resove
Timeline -> video ->
  • linked move across tracks,
  • Selection follows play head,
  • Ripple timeline markers


Under "Sound Library" dropdown
  • metadata View
  • thumbnail view
  • list view
_Misc Software



0
07/05/2026
Microsoft Excel Archive Module 3
vba module
Crop Production
Microsoft Excel



0
06/04/2026
Php Archive My Php Functions Function.php
function php
Php



0
07/20/2026
Mysql Database Php Lookup Of User Permissions
user permissions
New Server
$result=mysqli_query($connection,"SHOW GRANTS FOR CURRENT_USER");
if ($result) {
echo "

Privileges:

    ";
    while ($row = $result->fetch_assoc()) {
    echo "
  • " . htmlspecialchars(current($row)) . "
  • ";
    }
    echo "
";
$result->free();
} else {
echo "Error: " . $mysqli->error;
}
exit;
Mysql



0
07/11/2026
Vb.net Customizing Rem Out Code
rem
Developer
Comment multiple lines:
Ctrl + K, then Ctrl + C
Uncomment them:
Ctrl + K, then Ctrl + U

Here are the correct, verified ways to “REM out†(comment out) multiple lines in VB.NET, based strictly on real Visual Basic language rules and Visual Studio behavior.
VB.NET does not have a native multi?line comment block like /* */ in C# or Java. This is confirmed in the official REM documentation: each comment must begin its own line, because comments cannot span multiple lines automatically 1 4.
However, you can comment out multiple lines using any of the following real methods:

1. Add ' or REM to every line (language rule)
VB.NET allows single?line comments using:

The apostrophe '
The keyword REM (requires a space)

Both apply only to the current line, so you repeat them for each line 1 4.
Example:
Vb' First commented line
' Second commented line
' Third commented line

or:
VbREM First commented line
REM Second commented line
REM Third commented line


2. Use Visual Studio shortcut: Ctrl+K, Ctrl+C (comment)
Visual Studio lets you “comment out†multiple lines at once, even though VB.NET itself does not support block comments.
This is done with the keyboard shortcut 2 3 5:
Comment multiple lines:
Ctrl + K, then Ctrl + C
Uncomment them:
Ctrl + K, then Ctrl + U
Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C)
#If False Then … #End If to disable a block of code


3. Use #If False Then … #End If (compiler?ignored block)
This is not technically a comment, but it is a valid and common VB.NET technique for disabling multiple lines at once.
Example 5:
Vb#If False Then
Dim x As Integer
x = 10
Console.WriteLine(x)
#End If

Because the condition is False, the compiler ignores the entire block—effectively acting like a multi?line comment.

Summary
VB.NET does not support multi?line comments, but you can “REM out†multiple lines using:

' or REM on each line (language standard)
Visual Studio’s multiple?line comment shortcut (Ctrl+K, Ctrl+C)
#If False Then … #End If to disable a block of code

If you'd like, I can generate a Visual Studio macro, extension, or tool to automate REM?style commenting across many lines.
1-Microsoft.com 2-Stackoverflow.com 3-Codegenes.net 4-Github.com 5-Umatechnology.org
Vb.net



0
05/21/2026
Mysql Database Simple Php Mysql Database Connection Insert Example
connect insert
Debug
// Source - https://stackoverflow.com/q/53312997
// Posted by Tr?n V? Anh D?ng
// Retrieved 2026-07-10, License - CC BY-SA 4.0

$servername = "localhost";
$user = "admin";
$pass = "admin";
$dbname = "examples";

// Create connection
$conn = new mysqli($servername, $user, $pass, $dbname);
// Check connection
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}

$id = $_POST['id'];
$name = $_POST['name'];
$year = $_POST['year'];

$sql = "INSERT INTO cars (id, name, year)
VALUES ($id, $name, $year)";

if ($conn->query($sql) === TRUE) {
echo "T?o m?i thà nh công";
} else {
echo "L?i: " . $sql . "
" . $conn->error;
}

$conn->close();
?>
Mysql



0
07/10/2026
Javascript Function Submitting A Form And Running Javascript
submit button
Submit With Javascript
Javascript



0
09/04/2026
Vb.net Customizing Tab Control
tab
Webtools
In VB.NET, if you have a TabControl and want to get the index of the currently selected tab, you can use the SelectedIndex property.
If you want the index of a specific TabPage, you can use the TabPages.IndexOf() method.

Example: Get Current Selected Tab Index
VbnetImports System.Windows.Forms

Public Class Form1
Private Sub Form1_Load(sender As Object, e As EventArgs) Handles MyBase.Load
' Example: Add some tabs
TabControl1.TabPages.Add("Tab 1")
TabControl1.TabPages.Add("Tab 2")
TabControl1.TabPages.Add("Tab 3")
End Sub

Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
' Get the index of the currently selected tab
Dim currentIndex As Integer = TabControl1.SelectedIndex
MessageBox.Show("Current Tab Index: " & currentIndex)
End Sub
End Class


Example: Get Index of a Specific TabPage
Vbnet' Suppose you have a reference to a TabPage
Dim myTab As TabPage = TabControl1.TabPages("Tab 2")
Dim index As Integer = TabControl1.TabPages.IndexOf(myTab)
MessageBox.Show("Index of 'Tab 2': " & index)
Vb.net



0
07/25/2026
Mysql Database Update Query With 2 Tables
update multiple tables
Update Queries
Mysql



0
09/05/2026
Microsoft Excel Formatting Using Look Up Tables
xlookup
Crop Production
look up units
=IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),IF(tank_sizeB<101,XLOOKUP(R3,convertA,convertE),XLOOKUP(R3,convertA,convertC)))

look up multiplier
=IF(tank_sizeB<51,XLOOKUP(I4,convertA,convertF),IF(tank_sizeB<101,XLOOKUP(I4,convertA,convertD),XLOOKUP(I4,convertA,convertB)))

=IF(tank_sizeB<51,XLOOKUP(R3, convertA,convertF),"")
=IF(tank_sizeB<51,XLOOKUP(R3,convertA,convertG),"")

A B C D E F G
Units convert units2 convert2 units3 convert3 units4
oz 128 gal 32 qt 1.00 oz
pt 8 gal 2 qt 1.00 pt
qt 4 gal 1 qt 1.00 qt
gal 1 gal 0.25 qt 1.00 gal
ozd 16 lbs 16 lbs 1.00 ozd
lbs 1 lbs 1 lbs 1.00 lbs_
feet 1 ft1 1 ft2 1.00 feet
zz 1 zz 1 zz 1 zz
Microsoft Excel



0
05/20/2026
Microsoft Excel Function Vba Print Area
set print area
Crop Production
Sub SetMultiplePrintAreas()
ActiveSheet.PageSetup.PrintArea = ""
' Separate multiple ranges with a comma inside the string
ActiveSheet.PageSetup.PrintArea = "A1:C10,E1:G10,I1:K10"
End Sub

Sub ClearPrintArea()
ActiveSheet.PageSetup.PrintArea = ""
end sub


Sub ClearAllPrintAreas()
Dim ws As Worksheet
For Each ws In ThisWorkbook.Worksheets
ws.PageSetup.PrintArea = ""
Next ws
End Sub
Microsoft Excel



0
05/29/2026
Php Files Activate75.php
activate security
Developer
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");

if($bypass!=true){
$appid="636390303046554890";
$user='softwax3_build99';$password='Web2Build.now';$database='softwax3_SoftwareUsers';
$connection = swd_mysql("localhost", $user,$password,$database);
//if($appid>"636390303046554897"){$qu=new mysqli_swd();}else{$qu=new dbase();}
$qu=new mysqli_swd();
$sql="SELECT lock_device,security_level FROM users WHERE device_name='".$_COOKIE["machine_id"]."'";
$qu->dbsql($sql);
if($qu->num==0 || $qu->data1[0]==1) { echo "You are locked out";exit; }
$_SESSION['LEVEL']=$qu->data1[1]; $LEVEL=$qu->data1[1];
define('SWD_AUTHENTICATE', true);define('SWD_KEY', 'JesusIsLord');
}
if($bypass==true){define('SWD_AUTHENTICATE', true);}

?>
Php



1
05/05/2026
Php Function Back Up Of Mystuff.php
mystuff
Vps & Shared Servers

VPS SERVER



?php
// PHP 7.0 conversion Mysql
class mysqli_swd{
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection;
//if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; }

try {
$result=mysqli_query($connection,$query);
//echo "query successfully to MariaDB using MySQLi!";
} catch (mysqli_sql_exception $e) {
// Handle query failures gracefully
echo ("query failed: " . $e->getMessage());
if($debug==true){ echo "

Error:".$query."

";exit; }
} //end try

$sql= strtolower($query);

if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
//if($AC==""){echo $AC."==".$query;exit; }
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class
function swd_mysql($server, $user,$password,$database){
global $appid;
mysqli_report(MYSQLI_REPORT_ERROR | MYSQLI_REPORT_STRICT);
try {
// Establish the connection
$connection = mysqli_connect($server,$user,$password,$database,3306);
//echo "Connected successfully to MariaDB using MySQLi!";
} catch (mysqli_sql_exception $e) {
// Handle connection failures gracefully
die("Connection failed: " . $e->getMessage());
}
return $connection;
}


session_start();
include("config.php");//$bypass=true;
$connection = swd_mysql($server,$user,$password,$database);
if($pageLevel=='')$pageLevel=3;
?


OLD SERVER



?php
// PHP 7.0 conversion Mysql
class mysqli_swd{
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection;
//if (strpos($sql,"nsert into")==1) { echo "---".$query; exit; }
$result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query)
if(!$result){
if($debug==true){ echo "Error:".$query;exit;
}else{ echo "Error:".substr($query,0,1000);exit;}
}
$sql= strtolower($query);

if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
//if($AC==""){echo $AC."==".$query;exit; }
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class
function swd_mysql($server, $user,$password,$database){
global $appid;
$connection = mysqli_connect($server, $user,$password);
mysqli_select_db($connection, $database);
if (!$connection){
echo 'Error: Could not connect to Mysqli database. Please try again later.'; exit;
}
return $connection;

}

session_start();
include("config.php");//$bypass=true;
$connection = swd_mysql($server, $user,$password,$database);
if($pageLevel=='')$pageLevel=3;
?
Php



1
07/14/2026
Php Customizing Code That Is Being Debugged
backup debug testing
Php Script
Php



1
05/18/2026
Vb.net Customizing Control Fonts
font size
Web Tools

Example 1


If tab1.SelectedIndex = 1 Then
Dim R As String = GetIni("Font Family", My.Computer.Name, INI)
If R = "" Then
R = "Arial"
WriteIni("Font Family", My.Computer.Name, R, INI)
End If
Dim R2 As String = GetIni("Font Size", My.Computer.Name, INI)
If R2 = "" Then
R2 = "12"
WriteIni("Font Size", My.Computer.Name, R2, INI)
End If
txText.SelectAll()
Dim currentFont As Font = txText.SelectionFont
If currentFont IsNot Nothing Then
txText.Font = New Font(R, Int(R2), FontStyle.Regular) 'or Selectionfont for current text
End If
txText.DeselectAll()
End If

Example 2 with dialog control


Here’s a complete VB.NET example showing how to update the font properties of an existing RichTextBox at runtime using a FontDialog.
It preserves the current text and applies the chosen font either to the selected text or the entire content if nothing is selected.

Code
VbnetImports System.Windows.Forms
Imports System.Drawing

Public Class Form1
Private WithEvents richTextBox1 As New RichTextBox()
Private WithEvents btnChangeFont As New Button()
Private fontDialog1 As New FontDialog()

Public Sub New()
' Form setup
Me.Text = "RichTextBox Font Update Example"
Me.Size = New Size(600, 400)

' RichTextBox setup
richTextBox1.Dock = DockStyle.Top
richTextBox1.Height = 300
richTextBox1.Text = "This is some sample text." & Environment.NewLine &
"Select text and click the button to change its font."
Me.Controls.Add(richTextBox1)

' Button setup
btnChangeFont.Text = "Change Font..."
btnChangeFont.Dock = DockStyle.Bottom
Me.Controls.Add(btnChangeFont)
End Sub

' Button click event to open FontDialog
Private Sub btnChangeFont_Click(sender As Object, e As EventArgs) Handles btnChangeFont.Click
Try
' Preload dialog with current font (selected or default)
If richTextBox1.SelectionFont IsNot Nothing Then
fontDialog1.Font = richTextBox1.SelectionFont
Else
fontDialog1.Font = richTextBox1.Font
End If

' Show dialog and apply font if OK clicked
If fontDialog1.ShowDialog() = DialogResult.OK Then
If richTextBox1.SelectionLength > 0 Then
' Apply to selected text
richTextBox1.SelectionFont = fontDialog1.Font
Else
' Apply to entire text
richTextBox1.Font = fontDialog1.Font
End If
End If
Catch ex As Exception
MessageBox.Show("Error changing font: " & ex.Message, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error)
End Try
End Sub

' Entry point

Public Shared Sub Main()
Application.EnableVisualStyles()
Application.Run(New Form1())
End Sub
End Class


How It Works

FontDialog is used to let the user pick font family, size, and style.
If text is selected, only that selection’s font changes.
If no text is selected, the font for the entire RichTextBox changes.

From webtools 7/25/26 in connectionmod.vb


Public Sub changeControlsFont(ctrl As RichTextBox, dialog_Box As Boolean)
Dim fontDialog1 As New FontDialog(), B As String = ""

Try
Dim R As String = GetIni(My.Computer.Name, "Font Family", INI)
If R = "" Then
R = "Arial"
WriteIni(My.Computer.Name, "Font Family", R, INI)
End If
Dim R2 As String = GetIni("Font Size", My.Computer.Name, INI)
If R2 = "" Then
R2 = "12"
WriteIni(My.Computer.Name, "Font Size", R2, INI)
End If
ctrl.SelectAll()
Dim currentFont As Font = ctrl.SelectionFont
If currentFont IsNot Nothing Then
If dialog_Box = False Then
ctrl.Font = New Font(R, Int(R2), FontStyle.Regular)
Else
fontDialog1.Font = ctrl.Font
If fontDialog1.ShowDialog() = DialogResult.OK Then
ctrl.Font = fontDialog1.Font
WriteIni(My.Computer.Name, "Font Family", ctrl.Font.Name, INI)
WriteIni(My.Computer.Name, "Font Size", ctrl.Font.Size, INI)
End If
End If

End If
ctrl.DeselectAll()
Catch ex As Exception
MsgBox(ex.Message)
End Try
End Sub
Vb.net



1
07/25/2026
Php Files Copy A File In PHP
file copy
Copying Files
To copy a file in PHP, you use the built-in
copy() function. This function takes the source file path and the destination path as arguments and returns true on success or false on failure.
Syntax
php

bool copy(string $source, string $destination, resource $context = null): bool

$source (Required): The path to the original file you want to copy.
$destination (Required): The path, including the new filename, where the file will be copied. If the destination file already exists, it will be overwritten.
$context (Optional): A context resource created with stream_context_create().

Example
Here is a basic example of how to copy a file and check the result:

=?php

// Specify the source file path
$source_file = 'path/to/original_file.txt';

// Specify the destination path, including the new filename
$destination_file = 'path/to/new_directory/copied_file.txt';

// Use the copy() function
if (copy($source_file, $destination_file)) {
echo "File copied successfully!";
} else {
echo "Something went wrong while copying the file. Check permissions.";
}

?=


Important Considerations

File Permissions: The PHP script must have permission to read the source file and write to the destination directory. Permission errors are a common reason for failure.
Destination Path: The destination must include the new filename, not just the directory name. For example, you need .../new_dir/copied.txt, not just .../new_dir/.
Error Handling: The copy() function returns a boolean, so it is important to use an if statement to handle potential errors gracefully.
Moving vs. Copying: If you want to move a file (delete the original after copying), use the rename() function instead.
Uploaded Files: For handling files uploaded via an HTML form (HTTP POST method), you must use the specialized move_uploaded_file() function, not copy().
Php



1
05/05/2026
Php Files Create Directory File List After Database Backup
file list database backup example
Backup Sites
Php



1
05/05/2026
Php Function Create Lionks Backup
links $PDS_
Developer
Php



1
05/05/2026
Php Function Deletefile.php
delete exist file switch
Backup File Info
Php



1
05/05/2026
Php Language Finds The Position Of The Last Occurrence Of A String
search find
Developer
PHP strrpos() Function

Example
Find the position of the last occurrence of "php" inside the string:

echo strrpos("I love php, I love php too!","php");
?>
Definition and Usage
The strrpos() function finds the position of the last occurrence of a string inside another string.

Note: The strrpos() function is case-sensitive.

Related functions:

strpos() - Finds the position of the first occurrence of a string inside another string (case-sensitive)
stripos() - Finds the position of the first occurrence of a string inside another string (case-insensitive)
strripos() - Finds the position of the last occurrence of a string inside another string (case-insensitive)
Syntax
Php



1
05/05/2026
Php Database Inserting Multiple Rows Into A Table
insert multiple records
Database
Php



1
05/05/2026
Php Language Loops In Php
loops do while
Php
Php



1
05/05/2026
Php Ini Php Ini Partial
ini
Filter List Textarea
disable_functions no value no value
display_errors Off Off
display_startup_errors Off Off
doc_root no value no value
docref_ext no value no value
docref_root no value no value
enable_dl Off Off
enable_post_data_reading On On
error_append_string no value no value
error_log error_log error_log
error_prepend_string no value no value
error_reporting 22519 22519
expose_php Off Off
extension_dir /opt/cpanel/ea-php80/root/usr/lib64/php/modules /opt/cpanel/ea-php80/root/usr/lib64/php/modules
file_uploads On On
hard_timeout 2 2
highlight.comment #FF8000 #FF8000
highlight.default #0000BB #0000BB
highlight.html #000000 #000000
highlight.keyword #007700 #007700
highlight.string #DD0000 #DD0000
html_errors On On
ignore_repeated_errors Off Off
ignore_repeated_source Off Off
ignore_user_abort Off Off
implicit_flush Off Off
include_path .:/opt/cpanel/ea-php80/root/usr/share/pear .:/opt/cpanel/ea-php80/root/usr/share/pear
input_encoding no value no value
internal_encoding no value no value
log_errors On On
log_errors_max_len 1024 1024
mail.add_x_header On On
mail.force_extra_parameters no value no value
mail.log no value no value
max_execution_time 60 60
max_file_uploads 20 20
max_input_nesting_level 64 64
max_input_time 60 60
max_input_vars 1000 1000
max_multipart_body_parts -1 -1
memory_limit 512M 512M
open_basedir no value no value
output_buffering no value no value
output_encoding no value no value
output_handler no value no value
post_max_size 516M 516M
precision 14 14
Php



1
05/05/2026
Php Language PHP Language
random
Php



1
05/05/2026
Php Function SESSION VARIABLES NOT WORKING
DEBUG $_SESSION
HEMPDBASE
Php



1
05/05/2026
WP Plugin Function Wpfuction
wpfunction video
Swd Plugins
// PHP 7.0 conversion Mysql

class mysqli_swd{
// global $wpdb;
var $num=0;
var $id=0;
var $fieldflags="";var $fieldlength=0;var $fieldname="";var $fieldtable;var $fieldtype="";
var $data; var $data1=array();
var $row=array();
var $fields=0;
var $insertoption="";
var $quickarray=true;

function multipleRecs($value){
if($value==true)$value=false;
else $value=true;
$this->quickarray=$value;return true;
}
function tableOption($query){
global $connection;
$q = mysqli_query($connection,$query); //mysql_query($query);
$num_fields = mysqli_num_fields($q);
for($ii = 0; $ii < $num_fields; $ii++) {
//$result.= mysql_field_name($query,$ii)."-".mysql_field_type($query,$ii)."(".mysql_field_len($query,$ii).")".mysql_field_flags($query,$ii)."n";
$fieldinfo=mysqli_field_flags($q,$ii);
if(strpos($fieldinfo,"rimary_key")>0){ $this->fieldname=mysql_field_name($q,$ii);break; }
}
}
function dbRow($result){
return mysqli_fetch_array($result,MYSQLI_BOTH); //,MYSQLI_BOTH
}
function dbTable($result,$k){
$table_info = mysqli_fetch_field_direct($result, $k); //print_r($table_info);echo"
";
$this->fieldlength = $table_info->max_length;
$this->fieldname = $table_info->name;
$this->fieldtable = $table_info->table;
$this->fieldtype = $table_info->type;
$this->fieldflag = $table_info->flags;
}
function dbsql2($query){
$this->insertoption=$query;
}
function dbsql($query){
global $db; global $dc;global $debug; global $appid; global $connection; global $wpdb;
// $result=mysqli_query($connection,$query); // or die(mysqli_error().' from '.$query); //;mysql_query($query)
$result=mysqli_query($wpdb->dbh,$query);
if(!$result){
echo "You definitely Botched the Output requirement";exit;
//echo $query;exit;
}
$sql= strtolower($query);
if(strpos($sql,"nsert into")==1)$AC=1;
if(strpos($sql,"elect")==1){ $AC=2;$this->num=mysqli_num_rows($result); }
if(strpos($sql,"pdate")==1 || strpos($sql,"elete")==1)$AC=3;
switch($AC){
case 1:
$this->id=mysqli_insert_id($connection);
break;
case 2:
if($this->num==0 && $this->insertoption!=""){ $this->dbq($this->insertoption); return false; }
if($this->num==0) return false;
if($appid!=""){
$this->data1=mysqli_fetch_array($result,MYSQLI_BOTH);mysqli_data_seek($result,0); //mysql_data_seek($result,0);
$this->data=$result;
}else{
if($this->num==1 && $this->quickarray==true)$this->data=mysqli_fetch_array($result,MYSQLI_BOTH); //mysql_fetch_array($result);
else $this->data=$result;
}
$this->fields = mysqli_num_fields($result);
return true;
break;
case 3:
return true;
break;
} // end switch
}

} // end class

function MovieCall($file){
$poster=str_replace(".mp4",".png",$file);
$var="".MOVIE_DIRECTORY.$file."";
//$var="/JesusHumor/wp-content/uploads/movies/".$file."";

return $var;
}
function sizepicture($picture,$maxwidth,$maxheight){
list($width, $height, $type, $attr) = getimagesize($picture);
if($width==0)$width=1;if($height==0)$height=1;
$size[2]=$width;$size[3]=$height;
$hratio=$height/$maxheight; $wratio=$width/$maxwidth;
if ($wratio>$hratio){
$ratio=$width/$height;
if($width>$maxwidth){
$height=(int)($maxwidth/$ratio);$width=$maxwidth;
}
}else{
$ratio=$height/$width;
if($height>$maxheight){
$width=(int)($maxheight/$ratio);$height=$maxheight;
}
}
$size[0]=$width;$size[1]=$height;
return $size;
}
function replaceForm($longadd){
$longadd=stripslashes($longadd);
$longadd=str_replace(chr(160),chr(32),$longadd);
$longadd=str_replace("'","'",$longadd);
$longadd=str_replace(chr(34),""",$longadd);
return $longadd;
}

function replacePunctuation($longadd){
$longadd=stripslashes($longadd);
$longadd=str_replace(chr(160),chr(32),$longadd);
return $longadd;
}
function radiochecked($var,$item){
if($var==$item) return "checked";
else return "";
}
function checkboxchecked($value){
if($value==1) return "checked";
else return "";
}
function checkhtml($var){
$var2=strip_tags($var);
if($var2!=$var){ echo "Mail Server Crashed";exit; }
if(strpos("|".$var,"http:")>0){ echo "Mail Server Crashed";exit; }
$var=addslashes($var);
return $var;
}
function stripDESC($var1){
$m=strpos($var1,'DESC');
if($m>0)$var1=substr($var1,0,$m-1);
return $var1;
}
function ShortenString($var1){
global $prn;
$var1=stripslashes($var1);
$var1=str_replace(chr(160)," ",$var1); $var1=str_replace(chr(32).chr(32),"  ",$var1);
$var1=str_replace(chr(13),'
',$var1);
if(strlen($var1)>100 && $prn==''){
// $var1=substr($var1,0,40).'....';
//$var1="
".$var1."
";
}
//if($var1=='')$var1=' ';
return $var1;
}
function checkBlanks($value){
if($value!="")return "
".$value;
else return "";
}

function convertmdy($date1){
if($date1==""||$date1=="0000-00-00"){
$date1="";return date("m/d/y");
}
$new=strtotime($date1);
$date1= date('m/d/Y',$new);
return $date1;
}
function convertmdytime($date1){
if($date1==""||$date1=="0000-00-00"){
$date1="";return $date1;
}
$time=strtotime($date1);
$date1= date('m/d/Y H:i:s',$time);
return $date1;
}
function convertdate($date1){
if($date1=="") return date('Y-m-d');
$date1=str_replace("/","|",$date1); $date1=str_replace("-","|",$date1);
$time=explode("|",$date1);
if(strlen($time[0])==1) $time[0]="0".$time[0];
if(strlen($time[1])==1) $time[1]="0".$time[1];
$new=trim($time[2])."-".$time[0]."-".$time[1];
$date1= date('Y-m-d',strtotime($new));
return $date1;
}
function convertdatetime($date1){
if($date1=="") return date("Y-m-d H:i:s");
$date1= date('Y-m-d H:i:s',strtotime($date1));
return $date1;
}

function retrieveSettings($appid){
$bkup=array();
$savedSessions= json_decode(stripslashes($_COOKIE["SESSIONARRAY".$appid])); $savedPosts= json_decode(stripslashes($_COOKIE["POSTARRAY".$appid])); $savedGets= json_decode(stripslashes($_COOKIE["GETARRAY".$appid]));
if(gettype($savedSessions)=='array' || gettype($savedSessions)=='object'){
foreach($savedSessions as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
if(gettype($savedPosts)=='array' || gettype($savedPosts)=='object'){
foreach($savedPosts as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
if(gettype($savedGets)=='array' || gettype($savedGets)=='object'){
foreach($savedGets as $k=>$value) {
if($value!="")$bkup[$k]=$value;
}
}
return $bkup;
}
function checkValue($value1,$value2){
if($value1=="")$value1=$value2;
return $value1;
}
function comboResultSet($fieldidx,$fieldx,$tablex){
//global $r;global $appid; global $connection; global $wpdb;
$r=new mysqli_swd;
$settings=array(); $WHERE="";
if(function_exists("createConditions")){
$settings=createConditions($tablex);
if($settings[0]!="" )$WHERE=$settings[0];
if($settings[1]!="" )$fieldx=$settings[1];
}
$sql="SELECT $fieldidx,$fieldx FROM $tablex $WHERE ORDER BY $fieldx";//echo $sql;exit;
$r->dbsql($sql);
return $r->data;
}
function comboResultSet2($tablex,$fieldidx,$valuex){
$r=new mysqli_swd;//global $r;
$sql="SELECT * FROM $tablex WHERE $fieldidx = '$valuex'";$r->dbsql($sql);
return $r->data1;
}
function reportArray($result,$fieldxid,$fieldx){
$r=new mysqli_swd;
mysqli_data_seek($result,0);
For ($i=0; $i< mysqli_num_rows($result); $i++){
$row=$r->dbRow($result);
$xid=replacepunctuation($row["$fieldxid"]);
$x=replacepunctuation($row["$fieldx"]);
$createdArray[$xid]=$x;
}
return $createdArray;
}
function reportArray2($fieldx){
$rowtemp=explode(",",$fieldx[2]); $row=array();
foreach($rowtemp as $k=>$value) {
$row[$value]=$value;
}
return $row;
}
function reportCombo($result,$fieldxid,$fieldx,$selectx){
$r=new mysqli_swd;
mysqli_data_seek($result,0);
For ($i=0; $i< mysqli_num_rows($result); $i++){
$row=$r->dbRow($result);
$xid=replacepunctuation($row["$fieldxid"]);
$x=replacepunctuation($row["$fieldx"]);
if ($xid == $selectx){
$dis1 .= "
WP Plugin



1
07/06/2026
Javascript Object .select(); Clipboard
Clipboard object of document.getElementById().select;
Javascript



2
05/05/2026
Css Formatting ??????Keeping Place Holders
placeholder



Persistent background text

Css



2
05/05/2026
Microsoft Excel Customizing Adding A Color To Alternate Rows
color alternate rows
Filter List
Adding a color to alternate rows or columns (often called color banding) can make the data in your worksheet easier to scan. To format alternate rows or columns, you can quickly apply a preset table format. By using this method, alternate row or column shading is automatically applied when you add rows and columns.

Table with color applied to alternate rows

Here's how:

Select the range of cells that you want to format.

Go to Home > Format as Table.

office 365 asks for cell range. Remove "I have headers" checkmark. You can uncheck the headers box and it will remove the headers it creates. Delete the cells and move the cells up

Pick a table style that has alternate row shading.

To change the shading from rows to columns, select the table, under Table Design, and then uncheck the Banded Rows box and check the Banded Columns box.
Microsoft Excel



2
05/05/2026
WP Function Am I Logged Into Wordpress
logged in
Wp Admin
AI Overview
WordPress knows you are logged in by storing hashed, secure cookies in your browser upon successful authentication. When you navigate to a new page, WordPress checks for the wordpress_logged_in_[hash] cookie to identify who you are, making it stateless rather than using server-side PHP sessions.

Authentication Cookie: After login, WordPress sets a wordpress_logged_in_[hash] cookie that lasts for a specific duration, storing your username and authentication details.
Verification: On every admin page request, WordPress checks wp-includes/pluggable.php (using wp_validate_auth_cookie) to verify this cookie, ensuring you are logged in.
Without Cookies: If cookies are disabled or expired, WordPress will not recognize you and will request login credentials again.
No Active Monitoring: By default, WordPress does not track active sessions in the database; it only validates the cookies sent by your browser. Plugins are required to see "who is online"
WP



2
05/05/2026
Css Customizing Assembly.css Instructions
assembly vb.net phpscript whs transaction zoom
Developer

customize top and bottom table:


input.txwhere {min-width:300px;} length of where textbox
table.formtablewidth {width:100%;max-width:800px;}
table.reportActionTable {max-width:1200px;min-width:800px;} width of bottom table
textarea.textareaDimension{ width:100%;min-height: 200px; }
hr.cell_split{color:red;} color of line in merged cells


.navletters{margin:0 5px 0 10px;}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
input[type="checkbox"] {
border: 2px solid #2c4358;
}
table.formtablewidth {width:100%;max-width:800px;}
textarea.textareaDimension{ width:100%;min-height: 200px; }
table.reportActionTable {max-width:1200px;min-width:800px;}

A:link {text-decoration:underline;color:#330033;font-size:8pt}
A:visited {text-decoration:none;color:#0033FF;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A.menu:visited {text-decoration:none;color:#666666;font-size:8pt}
A:hover.menu {color:#ffcc66;font-size:8pt}
A.menu:active {text-decoration:none;color:#666666;font-size:8pt}
A:link.calendar {text-decoration:underline;color:#330033;font-size:8pt}
A:link.menu {text-decoration:none;color:#330033;font-size:8pt;font-family:Arial}

A:visited.calendar {text-decoration:underline;color:#666666;font-size:8pt}
A:hover.calendar {color:#ffcc66;font-size:8pt}
A:active.calendar {text-decoration:underline;color:#666666;font-size:8pt}
hr.cell_split{color:#FFFF00;}
img {border:0px;border-style:inset;border-color:black}
UL {margin-left:20px;margin-bottom:0in;margin-top:0in;}
LI {margin:1px 1px 1px 1px}
LI.large {margin:1px 1px 1px 1px;font-size:16pt}
body{margin-left:30px;margin-top:0px;font-size:10pt;font-family:Verdana}
p{font-family:verdana;font-size:10pt}
p.menu{font-family:verdana;font-size:8pt;margin-right:20px;margin-top:.5em}
table{border-color:#CCCCCC;border-collapse:collapse;}
tr.alt{background-color:#EEEEEE;}
td.debt{ color:red; }
td{font-family:verdana;font-size:8pt;border:1px solid #CCCCCC;padding:3px 4px 3px 6px;}
td.small{font-family:verdana;font-size:6pt}
td.menu{font-family:verdana;font-size:7pt}
p.title{font-family:verdana;font-size:12pt;font-weight:bold}
p.large{font-family:verdana;font-size:22pt}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
#menud table{border:none;border-color:#000000;width:150;border-collapse:collapse;background-color:#CCCCCC}
#menud td.menuon {background-color:#66FF00;color:#000000;border:1pt solid #000000;text-align:right}
#menud td.menuoff {background-color:#0033FF;color:#FFFFFF;border:1pt solid #000000;text-align:right}
#menud tr.space{height:15px}
#menud td.space{Border-top:0px;Border-bottom: 0px solid;Border-right:1pt solid #000000;Border-left:1pt solid #000000}
#menud tr{height:20px}
#menud p{font-family:Verdana;font-size:10pt;font-weight:bold;margin-left:5px;margin-right:5px}
input, textarea, select {font-family:verdana;font-size:8pt;margin-top:3px}
div.scroll{overflow:auto;text-align:left;min-width:450px;max-width:600px;max-height:200px; }
textarea.descriptionLED {height:250px; }
@media screen and (max-width: 1100px) {
body{ zoom:2.5;}
}
Css



2
05/05/2026
_Misc Software Formatting Auto Number In Excel
auto number
Excel Column
You can automatically number a column in Excel using the Fill Handle, Fill Series, or the ROW function to create a sequential numbering system easily.
Method 1: Using the Fill Handle
Enter Initial Numbers: In the first two cells of the column where you want to start numbering, enter the numbers 1 and 2 (or any starting numbers you prefer).
Select Cells: Highlight both cells containing the numbers.
Use the Fill Handle: Move your cursor to the bottom-right corner of the selection until you see a small plus sign (the Fill Handle).
Drag or Double-Click: Click and drag the Fill Handle down to fill the column with sequential numbers, or double-click it to auto-fill the column based on adjacent data.
2


2 Sources
Method 2: Using the Fill Series Option
Enter Starting Value: Type 1 in the first cell of the column.
Access Fill Options: Go to the Home tab, click on Fill, and select Series from the dropdown menu.
Configure Series: In the Series dialog box, choose Columns for Series in, set the Step Value to 1, and specify the Stop Value based on how many rows you want to number.
Click OK: This will fill the column with a sequential series of numbers.
2


2 Sources
Method 3: Using the ROW Function
Enter the Formula: In the first cell of the column, type the formula =ROW(A1) (adjust the cell reference based on your starting position). This will return the row number of the cell.
Drag the Fill Handle: Use the Fill Handle to drag the formula down the column. Each cell will display its corresponding row number, which updates automatically if rows are added or deleted.
2


2 Sources
Tips
Adjust Starting Point: If you want to start numbering from a different number, you can modify the formula accordingly (e.g., =ROW(A1)-4 to start from 1 in row 5).
Manual Updates: If you use the Fill Handle or Fill Series, remember that these numbers won't automatically update if you add or remove rows; you may need to redo the process to maintain accuracy.
1

By following these methods, you can efficiently auto-number columns in Excel to keep your data organized and easily readable.
_Misc Software



2
05/05/2026
_Misc Software Archive Backup Config Files
config
Config Files
code
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_codesaver'; $LEVEL=3;$_SESSION['LEVEL']=3; }
$debug=false;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="../lightbox";
$sessionListSave='';
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");
//Save this session when using ?RESET=1. Use commas if more than one



accounting business
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_accounting';$_SESSION['LEVEL']=2; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


Accounting Personal
//$y=date('Y');$m=date('m');$filter="Y".$y."M".$m;
//if($_GET["$filter"]==1){$_SESSION['LEVEL']=1;$LEVE=1;}else{require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");}
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accountingp'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='softwax3_Steve99';$password='pay99.bill';$database='softwax3_accountingP'; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave="date_of1SAVE,date_of2SAVE"; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


accounting Sons
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_winterbros';$_SESSION['LEVEL']=2; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");

Email Accounts
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_emailAccts';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebdesign.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'JesusIsLord'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");


Windsor hair Shoppe
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_hairShoppe';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Invoices
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_invoices';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Iq of Post
include("settings.php");
$appid="mysqli";
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_Tips';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");



Crop Map
//require_once($_SERVER['DOCUMENT_ROOT']."/activate75.php");
if($_SERVER['REMOTE_ADDR']=="127.0.0.1"){ $server='localhost';$user='greatone';$password='gr38t0n3';$database='accounting'; $_SESSION['LEVEL']=10;}
else{ $server='localhost';$user='warmhugs_GodMode';$password='G0d.M0d3!';$database='warmhugs_cropMap';$_SESSION['LEVEL']=3; }
$LEVEL=$_SESSION['LEVEL'];$debug=true;$domain="softwarewebsecure.com|127.0.0.1";$lightbox="https://www.softwarewebsecure.com";
$sessionListSave=''; //Save this session when using ?RESET=1. Use commas if more than one.
define('SWD_KEY', 'KingOfKings'); define('SWD_AUTHENTICATE', true);
setcookie("humans_21909", "", time() - 3600, "/");
_Misc Software



2
05/05/2026
_Misc Software Archive Backup Google Earth My Places
google earth backup
Google Earth Pro
Move saved locations to a new computer
You can move locations you've saved in Google Earth to a different computer. Saved locations are called placemarks, and they're automatically saved to your computer.

Step 1: Find location file
Windows
Press Ctrl + Esc + r or Windows key + r.
. In the "Open" box, enter "%USERPROFILE%AppDataLocalLowGoogleGoogleEarth".
If you're using Windows XP, enter "%USERPROFILE%Application DataGoogleGoogleEarth" instead.
Select OK.
In the directory, you'll see a file called "myplaces.kml". This file has your saved locations.
Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml."
Mac
Open the Finder.
At the top of the screen, click Go. Hold down Option or Alt, then click Library and then Application support and then Google Earth.
You'll see a file called "myplaces.kml". This file has your saved locations.
Note: If you want to replace a corrupted myplaces.kml file, use "myplaces.backup.kml."
Step 2: Move location file
There are a few ways you can transfer the file with your saved locations to another computer:

Save the file in Google Drive
Email the file to yourself
Save the file to a USB drive
Tip: Back up your myplaces.kml file to a removable device, like USB drive.
_Misc Software



2
05/05/2026
_Misc Software Setup Bluehost Email Setup On Pop3
email bluehost
Outook
These are results for bluehost pop3 email setup
Search instead for blue host pop3 email setup
AI Overview
To set up Bluehost email with POP3, configure your mail client using incoming server
mail.yourdomain.com (or pop.titan.email for professional email) on port 995 with SSL, and outgoing server mail.yourdomain.com (or smtp.titan.email) on port 465 or 587 with SSL/TLS. POP3 downloads messages to your device, making them accessible offline but often removing them from the server.
Key Bluehost POP3 Settings

Username: Full email address (e.g., user@example.com)
Password: Password for your email account
Incoming Server (POP3): mail.yourdomain.com (or pop.titan.email)
Incoming Port: 995
Security: SSL/TLS
Outgoing Server (SMTP): mail.yourdomain.com (or smtp.titan.email)
Outgoing Port: 465 (or 587)
Authentication: Required for outgoing server (use same username/password)

Setup Steps by Device

Gmail (Web): Go to Settings > "Accounts and Import" > "Check mail from other accounts" > Add a mail account > Select POP3 and enter the settings above.
Windows 10 Mail: Search for Mail > Accounts > Add Account > Advanced Setup > Internet email > Fill in POP3 details.
Android (Gmail App): Settings > Add account > Other > Select POP3 > Enter details.

Note: Ensure "Leave a copy of messages on server" is checked in your email client settings if you want to access mail from multiple devices
_Misc Software



2
05/05/2026
Vb.net Function Calling A Click Event
call
Vb.net Events
Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
Button2_Click(Sender, e)
End Sub

BTbulkMove_Click(sender As Object, e As EventArgs) translates to BTbulkMove_Click(sender, e)

BTtest_Click(sender As Object, e As EventArgs) translates to BTtest_Click(sender, e)
Vb.net



2
05/05/2026
Browsers Customizing Change The Default Download Location In Firefox
download firefox
Firefox
Browsers



2
05/05/2026
Windows >=10 Formatting Change Windows Date Format
time date format
Windows 11
Control panel
Date And time
Button Change date and time
Link "Change calendar settings
Select "English United states"
Windows >=10



2
05/05/2026
Windows >=10 Formatting Check Disk Chkdsk
check disk bad
Hard Drives
What is CHKDSK

Check Disk (CHKDSK) is a Windows built-in tool that scans your hard drive for corrupted files, repairs bugs and errors, and cleans up disk space to maintain your PC’s health. Use this tool when your PC is slow due to an almost full or failing hard drive.

CHKDSK commands:

chkdsk - Scans the hard drive for bugs or errors with no attempts of repair.
chkdsk [drive letter] - Replace “[drive letter]†to specify the internal or external drive to scan. For example, chkdsk C:
chkdsk /f - Attempts to fix bugs or errors while scanning the hard drive.
chkdsk /r - Attempts to fix sectors on the hard drive to make them readable in the file system.
chkdsk /x - Disconnects a drive to scan and fix it.
chkdsk /f /r /x - Scans the file system and its sectors, and fixes any errors found. If needed, this also disconnects the drive.

Run CHKDSK from File Explorer
If there only a few bad sectors on your drive, you can run CHKDSK command and format the drive to repair those bad sectors:
1. Press the Windows key and type cmd.
2. Right-click "Command Prompt" and choose "Run as administrator".
3. Type chkdsk E: /f /r /x and hit
Windows >=10



2
05/05/2026
_Misc Software Setup Check Gmail In Outlook Manually
gmail
Outlook Setup
_Misc Software



2
05/05/2026
Windows >=10 Query Cmd Ftype|clip
cmd ftype
Windows >=10



2
05/05/2026
_Misc Software Query Cmd Prompt
cmd
_Misc Software



2
05/05/2026
Php Archive Code Zoom Backup Code
zoom format html_entity_decode
Codezoom.php
Php



2
05/05/2026

Software Web Design