A PHP Error was encountered

Severity: Warning

Message: count(): Parameter must be an array or an object that implements Countable

Filename: core/MY_Controller.php

Line Number: 45

Backtrace:

File: /home/sprintzeal/public_html/application/core/MY_Controller.php
Line: 45
Function: _error_handler

File: /home/sprintzeal/public_html/application/controllers/Enrolling.php
Line: 20
Function: __construct

File: /home/sprintzeal/public_html/index.php
Line: 301
Function: require_once

Order Summary

Total

$ 2675.00

Apply Coupon Code


Grand Total : $ 2675.00
4.8 out of 5.0
3k Total number of Reviews 85.4%
Aggregate Review Score 77.1%
4.8 Star 92.4%
Course Completion Rate 70.1%

Learner Details Step - 1

Secure Payment Final Step

Participant Reviews

David Carnell

David Carnell

Healthcare Project Manager

I was very pleased with my PMP trainer and the content and materials. The slides were very well done and logical so you could learn the subject matter looking at the slides and listening to the trainer. The trainer was very patient and thorough in making sure that I understood the subject matter and made sure any questions i had or uncertainty was addressed. I am very pleased with my PMP training experience.

Lindsay Kunz

Program Management Officer

I was lucky to get an excellent trainer. Super knowledgeable and patient. Giving 4-stars only because Sprintzeal comes across as disjointed upon introduction. For example, two sales reps reached out to me at the same time and then I felt passed off. More visibility into who is doing what and their role would be helpful.

Glenn Monroe

Project Development Officer

I highly recommend this course. The content is very challenging and extensive but well organized. The instructor - Biswal knows the material very well and moves at a very comfortable pace with lots of opportunity for questions. The Sprintzeal team is very helpful and now I feel confident in taking the PMP exam.

Worlds 1 Training Company

Meet Your Course Trainer

A PHP Error was encountered

Severity: Warning

Message: Header may not contain more than a single header, new line detected

Filename: header/header.php

Line Number: 5

Backtrace:

File: /home/sprintzeal/public_html/application/views/header/header.php
Line: 5
Function: header

File: /home/sprintzeal/public_html/application/views/securepay/securepay_new.php
Line: 10
Function: view

File: /home/sprintzeal/public_html/application/controllers/Enrolling.php
Line: 167
Function: view

File: /home/sprintzeal/public_html/index.php
Line: 301
Function: require_once

Enroll Now | Sprintzeal
https://www.sprintzeal.com/curr-div", type: 'POST', data: {next_div: 2}, success: function (res) { $(".myText3").slideUp(800); $(".myText2").slideDown(800); $('html, body').animate({ 'scrollTop': 0 }, 2000); } }); }); $(document).on("click", ".back_2", function () { $.ajax({ url: "https://www.sprintzeal.com/curr-div", type: 'POST', data: {next_div: 1}, success: function (res) { $(".myText2").slideUp(800); $(".myText1").slideDown(800); $('html, body').animate({ 'scrollTop': 0 }, 2000); } }); }); var is_call = ""; $(document).on("click", "#dec_usr", function () { if (is_call == "") { var curr_usr = parseInt($("#user_count").html()); if (curr_usr == 1) { return false; } else { curr_usr = curr_usr - 1; $("#user_count").html(curr_usr); is_call = $.ajax({ url: "https://www.sprintzeal.com/curr-user", type: 'POST', data: {curr_usr: curr_usr}, success: function (res) { window.location.reload(); } }); } } else { return false; } }); $(document).on("click", "#inc_usr", function () { if (is_call == "") { var curr_usr = parseInt($("#user_count").html()); curr_usr = curr_usr + 1; $("#user_count").html(curr_usr); is_call = $.ajax({ url: "https://www.sprintzeal.com/curr-user", type: 'POST', data: {curr_usr: curr_usr}, success: function (res) { window.location.reload(); } }); } else { return false; } }); $(document).ready(function () { $("#cnfrm_card_payment").on("click", function () { $("#cnfrm_card_payment").hide(); $(".req_cnfrm_loader").show(); $(".err_cls").html("").hide(); var card_name = $.trim($("#card-name").val()); var card_num = $.trim($("#card-num").val()); var card_cvv = $.trim($("#card-cvv").val()); var bool = 0; if (card_name == "") { $("#err_card_name").html("Please enter card holder name").show(); bool++; } if (card_num == "") { $("#err_card_num").html("Please enter Credit/Debit card number").show(); bool++; } else if (card_num.length < 15) { $("#err_card_num").html("Invalid Credit/Debit card number").show(); bool++; } if (card_cvv == "") { $("#err_card_cvv").html("Please enter Credit/Debit CVV number").show(); bool++; } else if (card_cvv.length < 3) { $("#err_card_cvv").html("Invalid Credit/Debit CVV number").show(); bool++; } if (bool == 0) { $("#card_form").submit(); } else { $("#cnfrm_card_payment").show(); $(".req_cnfrm_loader").hide(); return false; } }); $("#payu_submit").on("click", function () { $("#payu_form").submit(); }); }); }); function validatePromoForm() { var input = document.getElementById('apply_promo'); var error = document.getElementById('promoError'); if (input && input.value.trim() === '') { error.style.display = 'block'; return false; // Prevent form submission } error.style.display = 'none'; return true; }