├── pages ├── ipn.php ├── logout.php ├── index.php ├── return.php ├── error.php ├── cancel.php ├── registered-failed.php ├── registered.php ├── activate.php ├── catalogue-item.php ├── orders.php ├── catalogue.php ├── basket.php └── summary.php ├── admin ├── pages │ ├── logout.php │ ├── clients │ │ ├── ._edit.php │ │ ├── ._list.php │ │ ├── ._edited.php │ │ ├── ._remove.php │ │ ├── ._edited-failed.php │ │ ├── edited-failed.php │ │ ├── edited.php │ │ ├── remove.php │ │ └── list.php │ ├── business │ │ ├── ._edit.php │ │ ├── ._edited.php │ │ ├── ._edited-failed.php │ │ ├── edited-failed.php │ │ ├── edited.php │ │ └── edit.php │ ├── error.php │ ├── categories │ │ ├── added-failed.php │ │ ├── edited-failed.php │ │ ├── added.php │ │ ├── edited.php │ │ ├── remove.php │ │ ├── list.php │ │ ├── add.php │ │ └── edit.php │ ├── orders │ │ ├── edited-failed.php │ │ ├── edited.php │ │ ├── remove.php │ │ ├── list.php │ │ └── invoice.php │ ├── products │ │ ├── added-failed.php │ │ ├── edited-failed.php │ │ ├── added.php │ │ ├── edited.php │ │ ├── added-no-upload.php │ │ ├── edited-no-upload.php │ │ ├── remove.php │ │ ├── list.php │ │ └── add.php │ ├── business.php │ ├── clients.php │ ├── orders.php │ ├── categories.php │ ├── products.php │ └── index.php ├── index.php └── template │ ├── .__footer.php │ ├── .__header.php │ ├── _footer.php │ └── _header.php ├── index.php ├── readme ├── css ├── ._core.css ├── ._invoice.css ├── invoice.css └── core.css ├── emails ├── ._1.php └── 1.php ├── images ├── sprite.png ├── ._sprite.png ├── ._loadinfo.net.gif └── loadinfo.net.gif ├── inc ├── ._config.php ├── ._autoload.php ├── autoload.php └── config.php ├── dbase └── ._ecommerce.sql ├── mod ├── basket_remove.php ├── basket_small_refresh.php ├── basket_qty.php ├── basket.php ├── basket_left.php ├── paypal.php └── basket_view.php ├── template ├── .__footer.php ├── .__header.php ├── _footer.php └── _header.php ├── classes ├── Application.php ├── Core.php ├── PHPMailer_v5.1 │ ├── ._LICENSE │ ├── ._README │ ├── ._aboutus.html │ ├── test │ │ ├── test.png │ │ ├── ._test.png │ │ ├── ._contents.html │ │ ├── ._testemail.php │ │ ├── phpmailerTest.php │ │ ├── ._phpmailerTest.php │ │ ├── ._test_callback.php │ │ ├── contents.html │ │ ├── testemail.php │ │ └── test_callback.php │ ├── ._PHPMailer.php │ ├── ._changelog.txt │ ├── ._class.pop3.php │ ├── ._class.smtp.php │ ├── docs │ │ ├── ._faq.html │ │ ├── extending.html │ │ ├── ._extending.html │ │ ├── ._use_gmail.txt │ │ ├── ._pop3_article.txt │ │ ├── ._DomainKeys_notes.txt │ │ ├── ._Callback_function_notes.txt │ │ ├── ._Note_for_SMTP_debugging.txt │ │ ├── Callback_function_notes.txt │ │ ├── Note_for_SMTP_debugging.txt │ │ ├── use_gmail.txt │ │ ├── DomainKeys_notes.txt │ │ └── faq.html │ ├── examples │ │ ├── ._index.html │ │ ├── ._contents.html │ │ ├── images │ │ │ ├── phpmailer.gif │ │ │ ├── ._phpmailer.gif │ │ │ ├── phpmailer_mini.gif │ │ │ └── ._phpmailer_mini.gif │ │ ├── ._test_mail_basic.php │ │ ├── ._test_smtp_basic.php │ │ ├── ._test_db_smtp_basic.php │ │ ├── ._test_mail_advanced.php │ │ ├── ._test_sendmail_basic.php │ │ ├── ._test_smtp_advanced.php │ │ ├── ._test_sendmail_advanced.php │ │ ├── ._test_smtp_gmail_basic.php │ │ ├── ._test_smtp_basic_no_auth.php │ │ ├── ._test_smtp_gmail_advanced.php │ │ ├── ._test_pop_before_smtp_basic.php │ │ ├── ._test_smtp_advanced_no_auth.php │ │ ├── ._test_pop_before_smtp_advanced.php │ │ ├── contents.html │ │ ├── test_mail_basic.php │ │ ├── test_sendmail_basic.php │ │ ├── test_mail_advanced.php │ │ ├── test_sendmail_advanced.php │ │ ├── test_pop_before_smtp_basic.php │ │ ├── test_pop_before_smtp_advanced.php │ │ ├── test_smtp_advanced_no_auth.php │ │ ├── test_smtp_basic_no_auth.php │ │ ├── test_smtp_advanced.php │ │ ├── test_smtp_gmail_advanced.php │ │ ├── test_smtp_basic.php │ │ ├── test_smtp_gmail_basic.php │ │ ├── test_db_smtp_basic.php │ │ └── index.html │ └── language │ │ ├── ._phpmailer.lang-ar.php │ │ ├── ._phpmailer.lang-br.php │ │ ├── ._phpmailer.lang-ca.php │ │ ├── ._phpmailer.lang-ch.php │ │ ├── ._phpmailer.lang-cz.php │ │ ├── ._phpmailer.lang-de.php │ │ ├── ._phpmailer.lang-dk.php │ │ ├── ._phpmailer.lang-es.php │ │ ├── ._phpmailer.lang-et.php │ │ ├── ._phpmailer.lang-fi.php │ │ ├── ._phpmailer.lang-fo.php │ │ ├── ._phpmailer.lang-fr.php │ │ ├── ._phpmailer.lang-hu.php │ │ ├── ._phpmailer.lang-it.php │ │ ├── ._phpmailer.lang-ja.php │ │ ├── ._phpmailer.lang-nl.php │ │ ├── ._phpmailer.lang-no.php │ │ ├── ._phpmailer.lang-pl.php │ │ ├── ._phpmailer.lang-ro.php │ │ ├── ._phpmailer.lang-ru.php │ │ ├── ._phpmailer.lang-se.php │ │ ├── ._phpmailer.lang-tr.php │ │ ├── ._phpmailer.lang-zh.php │ │ ├── ._phpmailer.lang-zh_cn.php │ │ ├── phpmailer.lang-zh.php │ │ ├── phpmailer.lang-zh_cn.php │ │ ├── phpmailer.lang-ch.php │ │ ├── phpmailer.lang-ja.php │ │ ├── phpmailer.lang-no.php │ │ ├── phpmailer.lang-cz.php │ │ ├── phpmailer.lang-pl.php │ │ ├── phpmailer.lang-se.php │ │ ├── phpmailer.lang-nl.php │ │ ├── phpmailer.lang-hu.php │ │ ├── phpmailer.lang-dk.php │ │ ├── phpmailer.lang-tr.php │ │ ├── phpmailer.lang-et.php │ │ ├── phpmailer.lang-ru.php │ │ ├── phpmailer.lang-es.php │ │ ├── phpmailer.lang-fr.php │ │ ├── phpmailer.lang-ar.php │ │ ├── phpmailer.lang-ca.php │ │ ├── phpmailer.lang-ro.php │ │ ├── phpmailer.lang-fo.php │ │ ├── phpmailer.lang-fi.php │ │ ├── phpmailer.lang-br.php │ │ ├── phpmailer.lang-it.php │ │ └── phpmailer.lang-de.php ├── Country.php ├── Admin.php ├── Business.php ├── Session.php ├── Upload.php ├── Url.php ├── Form.php ├── Basket.php ├── Email.php ├── Helper.php ├── Paging.php ├── Login.php └── User.php └── media └── catalogue ├── unavailable.png ├── ._unavailable.png ├── 41jvrdnqpcl.-ss500-.jpg ├── 41pw5c70m-l.-ss500-.jpg ├── 41tvgoec72l.-ss500-.jpg ├── 515htcskybl.-ss500-.jpg ├── 51c4k9pth4l.-ss500-.jpg ├── 51msk1xtdbl.-ss500-.jpg ├── 51s9-bneftl.-ss500-.jpg ├── 51xqyzh2hcl.-ss500-.jpg ├── 51yw-ak9hgl.-ss400-.jpg ├── ._41jvrdnqpcl.-ss500-.jpg ├── ._41pw5c70m-l.-ss500-.jpg ├── ._41tvgoec72l.-ss500-.jpg ├── ._515htcskybl.-ss500-.jpg ├── ._51c4k9pth4l.-ss500-.jpg ├── ._51msk1xtdbl.-ss500-.jpg ├── ._51s9-bneftl.-ss500-.jpg ├── ._51xqyzh2hcl.-ss500-.jpg └── ._51yw-ak9hgl.-ss400-.jpg /pages/ipn.php: -------------------------------------------------------------------------------- 1 | ipn(); -------------------------------------------------------------------------------- /pages/logout.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /admin/index.php: -------------------------------------------------------------------------------- 1 | run(); -------------------------------------------------------------------------------- /pages/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /readme: -------------------------------------------------------------------------------- 1 | We had to remove the PHPMailer from the final version as it's licensed product so please download it from http://phpmailer.worxware.com/ -------------------------------------------------------------------------------- /css/._core.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/css/._core.css -------------------------------------------------------------------------------- /emails/._1.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/emails/._1.php -------------------------------------------------------------------------------- /css/._invoice.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/css/._invoice.css -------------------------------------------------------------------------------- /images/sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/images/sprite.png -------------------------------------------------------------------------------- /inc/._config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/inc/._config.php -------------------------------------------------------------------------------- /images/._sprite.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/images/._sprite.png -------------------------------------------------------------------------------- /inc/._autoload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/inc/._autoload.php -------------------------------------------------------------------------------- /dbase/._ecommerce.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/dbase/._ecommerce.sql -------------------------------------------------------------------------------- /mod/basket_remove.php: -------------------------------------------------------------------------------- 1 | db = new Dbase(); 8 | } 9 | 10 | } -------------------------------------------------------------------------------- /classes/Core.php: -------------------------------------------------------------------------------- 1 | 5 |
Thank you for your order.
7 | -------------------------------------------------------------------------------- /admin/pages/business/._edited-failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/admin/pages/business/._edited-failed.php -------------------------------------------------------------------------------- /admin/pages/clients/._edited-failed.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/admin/pages/clients/._edited-failed.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/._PHPMailer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/._PHPMailer.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/._changelog.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/._changelog.txt -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/._class.pop3.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/._class.pop3.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/._class.smtp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/._class.smtp.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/docs/._faq.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/docs/._faq.html -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/test/._test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/test/._test.png -------------------------------------------------------------------------------- /media/catalogue/41jvrdnqpcl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/41jvrdnqpcl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/41pw5c70m-l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/41pw5c70m-l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/41tvgoec72l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/41tvgoec72l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/515htcskybl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/515htcskybl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/51c4k9pth4l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/51c4k9pth4l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/51msk1xtdbl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/51msk1xtdbl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/51s9-bneftl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/51s9-bneftl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/51xqyzh2hcl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/51xqyzh2hcl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/51yw-ak9hgl.-ss400-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/51yw-ak9hgl.-ss400-.jpg -------------------------------------------------------------------------------- /pages/error.php: -------------------------------------------------------------------------------- 1 | 2 |The page you are trying to access does not exist or has been moved.
4 | -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/docs/extending.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/docs/extending.html -------------------------------------------------------------------------------- /media/catalogue/._41jvrdnqpcl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._41jvrdnqpcl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._41pw5c70m-l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._41pw5c70m-l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._41tvgoec72l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._41tvgoec72l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._515htcskybl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._515htcskybl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._51c4k9pth4l.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._51c4k9pth4l.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._51msk1xtdbl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._51msk1xtdbl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._51s9-bneftl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._51s9-bneftl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._51xqyzh2hcl.-ss500-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._51xqyzh2hcl.-ss500-.jpg -------------------------------------------------------------------------------- /media/catalogue/._51yw-ak9hgl.-ss400-.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/media/catalogue/._51yw-ak9hgl.-ss400-.jpg -------------------------------------------------------------------------------- /pages/cancel.php: -------------------------------------------------------------------------------- 1 | 2 |There was a problem with your order.
4 | Please try again.
The page you are trying to access does not exist or has been moved.
4 | -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/images/phpmailer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/images/phpmailer.gif -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_mail_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_mail_basic.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_smtp_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_smtp_basic.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/images/._phpmailer.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/images/._phpmailer.gif -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ar.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-br.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-br.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ca.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ca.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ch.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-cz.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-cz.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-de.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-de.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-dk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-dk.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-es.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-es.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-et.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-et.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-fi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-fi.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-fo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-fo.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-fr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-fr.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-hu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-hu.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-it.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-it.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ja.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ja.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-nl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-nl.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-no.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-no.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-pl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-pl.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ro.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ro.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-ru.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-ru.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-se.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-se.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-tr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-tr.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-zh.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-zh.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/docs/._Callback_function_notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/docs/._Callback_function_notes.txt -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/docs/._Note_for_SMTP_debugging.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/docs/._Note_for_SMTP_debugging.txt -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_db_smtp_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_db_smtp_basic.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_mail_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_mail_advanced.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_sendmail_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_sendmail_basic.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_smtp_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_smtp_advanced.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/images/phpmailer_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/images/phpmailer_mini.gif -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_sendmail_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_sendmail_advanced.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_smtp_gmail_basic.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_smtp_gmail_basic.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/images/._phpmailer_mini.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/images/._phpmailer_mini.gif -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/language/._phpmailer.lang-zh_cn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/language/._phpmailer.lang-zh_cn.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_smtp_basic_no_auth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_smtp_basic_no_auth.php -------------------------------------------------------------------------------- /classes/PHPMailer_v5.1/examples/._test_smtp_gmail_advanced.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faruqi/udemy.com-build-ecommerce-website-with-PHP-MySQL-jQuery-and-PayPal-code-examples/HEAD/classes/PHPMailer_v5.1/examples/._test_smtp_gmail_advanced.php -------------------------------------------------------------------------------- /admin/pages/business/edited-failed.php: -------------------------------------------------------------------------------- 1 | 2 |There was a problem updating this record.
4 | Please contact administrator.
There was a problem processing your registration.
6 | Please try again later.
There was a problem adding this record.
4 | Please contact administrator.
There was a problem updating this record.
4 | Please contact administrator.
There was a problem updating this record.
4 | Please contact administrator.
There was a problem adding this record.
4 | Please contact administrator.
There was a problem updating this record.
4 | Please contact administrator.
There was a problem updating this record.
4 | Please contact administrator.
Thank you for registering with us.
6 | In order to proceed you have to activate your account by clicking on the link, which we have sent you by email.
Here is a test HTML email
9 | 10 | 11 | -------------------------------------------------------------------------------- /admin/pages/business/edited.php: -------------------------------------------------------------------------------- 1 | 5 |The record has been updated successfully.
7 | Go back to the business record.
The record has been updated successfully.
7 | Go back to the list of orders.
The record has been updated successfully.
7 | Go back to the list of clients.
The new record has been added successfully.
7 | Go back to the list of products.
The record has been updated successfully.
7 | Go back to the list of products.
The new record has been added successfully.
7 | Go back to the list of categories.
The record has been updated successfully.
7 | Go back to the list of categories.
Dear ,
2 |Thank you for registering at our website.
3 | Your login details are as follow:
Login:
6 | Password:
In order to activate your account please click on the link below:
9 | 10 | -------------------------------------------------------------------------------- /mod/basket_small_refresh.php: -------------------------------------------------------------------------------- 1 | _number_of_items; 6 | $out['bl_st'] = number_format($objBasket->_sub_total, 2); 7 | $out['bl_vat'] = number_format($objBasket->_vat, 2); 8 | $out['bl_total'] = number_format($objBasket->_total, 2); 9 | echo json_encode($out); -------------------------------------------------------------------------------- /admin/pages/products/added-no-upload.php: -------------------------------------------------------------------------------- 1 | 5 |The new record has been added successfully without the image.
7 | Go back to the list of products.
The record has been updated successfully, but without changing the image.
7 | Go back to the list of products.