MYSOFTIT
Your trusted partner for SQL services in malaysia
The Best Accounting Software
We are professional in SQL Account & SQL Payrol.
SQL ACCOUNT
SQL Account is an accounting software that is suitable for all businesses, from small businesses to large organizations. It is crucial to find a business solution that suits the nature of your business. The right accounting software will broaden the horizons and expand business opportunities for you.
Choose the best accounting software in Malaysia for your company. SQL Account is user friendly & can be integrated with no fuss.
Featured Products
We empower more than 600,000 accounting and business professionals using SQL Account and SQL Payroll to perform their daily operation effectively.
SQL Account
SQL Account is an accounting software that is suitable for all businesses, from small businesses to large organizations. It is crucial to find a business solution that suits the nature of your business. The right accounting software will broaden the horizons and expand business opportunities for you.
Choose the best accounting software in Malaysia for your company. SQL Account is user friendly & can be integrated with no fuss.
Free Download Accounting Software trial to experience our accounting software.
Access Anytime, Anywhere
Access your account & manage your business anytime, anywhere.
Batch Email Statement
Email statement to all your customers individually with password encryption in one simple click.
Special Industries Version
Accountant set, shipping and forwarding, property management, construction, distributor, motor vehicle system, photocopier meter.
Real-Time CTOS Company Overview Reports
Provide SQL Account users a financial standing overview of their customers and suppliers. Helping users make better business risk assessment.
Advance Security Locks
Allowed users access into the documents with restricted by advance level locks, such as hide salaries in cash book.
Intelligence Reporting
Comprehensive reporting such as commission collection reports, tracks your top 3 profitable customers, annual comparison of profit & loss.
SQL PAYROLL
SQL Payroll software brings simplicity into the complex nature of Human Resource management. This payroll software comes equipped with HR management, leave management, PCB tax calculator, and is compliant to Malaysia labour laws & government regulations.
Free Download Payroll Software trial to experience our payroll software.
How SQL Make Your Work-Life Easier?
// Toggle Accordion
function toggleAccordion(contentId, iconId) {
document.querySelectorAll('.accordion-content').forEach(content => {
if (content.id !== contentId) {
content.style.display = "none";
}
});
document.querySelectorAll('.accordion-icon').forEach(icon => {
if (icon.id !== iconId) {
icon.textContent = "▼";
}
});
const content = document.getElementById(contentId);
const icon = document.getElementById(iconId);
const isVisible = content.style.display === "block";
content.style.display = isVisible ? "none" : "block";
icon.textContent = isVisible ? "▼" : "▲";
const header = icon.parentElement;
header.setAttribute("aria-expanded", !isVisible);
}
// Update Video on Click
document.querySelectorAll('.accordion-content a').forEach(anchor => {
anchor.addEventListener('click', function(e) {
e.preventDefault();
const videoId = this.getAttribute('data-video-id');
const iframe = document.getElementById('main-video');
iframe.src = `https://www.youtube.com/embed/${videoId}`;
// Highlight the active link
document.querySelectorAll('.accordion-content a').forEach(link => {
link.style.color = '';
});
this.style.color = '#6a0dad';
});
});
.container {
display: flex;
flex-wrap: wrap;
gap: 30px;
max-width: 1200px;
margin: 40px auto;
padding: 20px;
}
.video-section {
flex: 2;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
iframe {
width: 100%;
height: 600px;
border: none;
border-radius: 10px;
}
.accordion-section {
flex: 1;
padding: 20px;
background-color: #fff;
border-radius: 10px;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
}
.accordion-title {
text-align: center;
font-size: 26px;
margin-bottom: 20px;
color: #333;
}
.accordion-header {
background-color: #6a0dad;
color: white;
padding: 15px 20px;
font-weight: bold;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
border-radius: 5px;
margin-bottom: 10px;
}
.accordion-header:hover {
background-color: #550a8a;
}
.accordion-content {
display: none;
overflow: hidden;
max-height: 0;
padding: 0;
background-color: #f9f9f9;
border-radius: 5px;
transition: max-height 0.3s ease, padding 0.3s ease;
}
.accordion-content ul {
list-style: none;
padding: 10px 20px;
margin: 0;
}
.accordion-content li {
margin-bottom: 8px;
}
a {
text-decoration: none;
color: black;
font-weight: bold;
display: block;
padding: 5px 0;
}
a:hover {
color: #6a0dad;
}
.accordion-icon {
font-size: 20px;
}
@media (max-width: 768px) {
.container {
flex-direction: column;
}
.video-section, .accordion-section {
flex: 1 100%;
}
}