├── Authentication.php ├── Authentificating.php ├── LICENSE ├── README.md ├── action.php ├── adduser.php ├── bill.php ├── bill2.php ├── bills.php ├── cons.php ├── country ├── LoaderIcon.gif ├── ajax-live-search-master.zip ├── ajax-live-search-master │ ├── .gitignore │ ├── DOM RANGE │ ├── LICENSE.txt │ ├── README.md │ ├── core │ │ ├── AjaxProcessor.php │ │ ├── Config.template.php │ │ ├── DB.php │ │ ├── Handler.php │ │ └── index.html │ ├── css │ │ ├── ajaxlivesearch.css │ │ ├── ajaxlivesearch.min.css │ │ ├── animation.css │ │ ├── fontello-codes.css │ │ ├── fontello-embedded.css │ │ ├── fontello-ie7-codes.css │ │ ├── fontello-ie7.css │ │ ├── fontello.css │ │ └── index.html │ ├── docs │ │ ├── index.html │ │ └── troubleshooting.md │ ├── font │ │ ├── fontello.eot │ │ ├── fontello.svg │ │ ├── fontello.ttf │ │ ├── fontello.woff │ │ └── index.html │ ├── img │ │ ├── green_loader.gif │ │ └── index.html │ ├── index.php │ ├── js │ │ ├── ajaxlivesearch.js │ │ ├── ajaxlivesearch.min.js │ │ ├── index.html │ │ └── jquery-1.11.1.min.js │ └── templates │ │ ├── default.php │ │ └── hiddenColumn.php ├── dbcontroller.php ├── index.php ├── link.php └── readCountry.php ├── css.css ├── database_connection.php ├── details.php ├── details2 (1).php ├── details2.php ├── factures.php ├── fetch_item.php ├── find.php ├── find_existing.php ├── formpay.php ├── functions └── stripe-class.php ├── highslide ├── graphics │ ├── close.png │ ├── closeX.png │ ├── controlbar-black-border.gif │ ├── controlbar-text-buttons.png │ ├── controlbar-white-small.gif │ ├── controlbar-white.gif │ ├── controlbar2.gif │ ├── controlbar3.gif │ ├── controlbar4-hover.gif │ ├── controlbar4.gif │ ├── fullexpand.gif │ ├── geckodimmer.png │ ├── icon.gif │ ├── loader.gif │ ├── loader.white.gif │ ├── loader.white1.gif │ ├── outlines │ │ ├── Outlines.psd │ │ ├── beveled.png │ │ ├── drop-shadow.png │ │ ├── glossy-dark.png │ │ ├── outer-glow.png │ │ ├── rounded-black.png │ │ └── rounded-white.png │ ├── resize.gif │ ├── scrollarrows.png │ ├── zoomin.cur │ └── zoomout.cur ├── highslide-with-html.js └── highslide.css ├── home (1).php ├── home.php ├── img ├── 31.jpg ├── Thumbs.db ├── bill.png ├── del.png ├── edit1.png ├── find.png ├── home.png ├── key.png ├── labo.png ├── logout.png ├── medepay0.jpg ├── patient.png ├── pres.png ├── report.png ├── upd.JPG ├── user.png └── yes.png ├── index (1).php ├── index.php ├── index_payment.php ├── invoice.php ├── js ├── dw_event.js ├── dw_tooltip.js ├── dw_tooltip_aux.js ├── dw_viewport.js ├── google.js ├── jquery-1.9.1.min.js ├── modernizr.js ├── script.js └── tabs.js ├── lab.php ├── lib ├── jquery.easytabs.js ├── jquery.easytabs.min.js └── vendor │ ├── jquery-1.7.1.min.js │ └── jquery.hashchange.min.js ├── link.php ├── login.php ├── logout.php ├── medepay (1).sql ├── mminvoice.php ├── naomi.sql ├── order_process.php ├── orderdelete.php ├── payment.php ├── payment2.php ├── presc.php ├── records (1).php ├── records.php ├── releve.php ├── rssbinvoice.php ├── search ├── LoaderIcon.gif ├── clients.php ├── dbcontroller.php ├── index.php ├── jquery.js ├── labsearch.php ├── pharmacy.php └── readCountry.php ├── stripe ├── README.md ├── cancel.html ├── charge.php ├── checkout.html ├── composer.json ├── create-checkout-session.php ├── create.php ├── style.css └── success.html ├── stripe_vendor ├── autoload.php ├── composer │ ├── ClassLoader.php │ ├── LICENSE │ ├── autoload_classmap.php │ ├── autoload_namespaces.php │ ├── autoload_psr4.php │ ├── autoload_real.php │ ├── autoload_static.php │ └── installed.json └── stripe │ └── stripe-php │ ├── .gitignore │ ├── CHANGELOG.md │ ├── LICENSE │ ├── README.md │ ├── VERSION │ ├── build.php │ ├── composer.json │ ├── data │ └── ca-certificates.crt │ ├── init.php │ ├── lib │ ├── Account.php │ ├── AccountLink.php │ ├── AlipayAccount.php │ ├── ApiOperations │ │ ├── All.php │ │ ├── Create.php │ │ ├── Delete.php │ │ ├── NestedResource.php │ │ ├── Request.php │ │ ├── Retrieve.php │ │ └── Update.php │ ├── ApiRequestor.php │ ├── ApiResource.php │ ├── ApiResponse.php │ ├── ApplePayDomain.php │ ├── ApplicationFee.php │ ├── ApplicationFeeRefund.php │ ├── Balance.php │ ├── BalanceTransaction.php │ ├── BankAccount.php │ ├── BitcoinReceiver.php │ ├── BitcoinTransaction.php │ ├── Capability.php │ ├── Card.php │ ├── Charge.php │ ├── Checkout │ │ └── Session.php │ ├── Collection.php │ ├── CountrySpec.php │ ├── Coupon.php │ ├── CreditNote.php │ ├── Customer.php │ ├── Discount.php │ ├── Dispute.php │ ├── EphemeralKey.php │ ├── Error │ │ ├── Api.php │ │ ├── ApiConnection.php │ │ ├── Authentication.php │ │ ├── Base.php │ │ ├── Card.php │ │ ├── Idempotency.php │ │ ├── InvalidRequest.php │ │ ├── OAuth │ │ │ ├── InvalidClient.php │ │ │ ├── InvalidGrant.php │ │ │ ├── InvalidRequest.php │ │ │ ├── InvalidScope.php │ │ │ ├── OAuthBase.php │ │ │ ├── UnsupportedGrantType.php │ │ │ └── UnsupportedResponseType.php │ │ ├── Permission.php │ │ ├── RateLimit.php │ │ └── SignatureVerification.php │ ├── Event.php │ ├── ExchangeRate.php │ ├── File.php │ ├── FileLink.php │ ├── FileUpload.php │ ├── HttpClient │ │ ├── ClientInterface.php │ │ └── CurlClient.php │ ├── Invoice.php │ ├── InvoiceItem.php │ ├── InvoiceLineItem.php │ ├── IssuerFraudRecord.php │ ├── Issuing │ │ ├── Authorization.php │ │ ├── Card.php │ │ ├── CardDetails.php │ │ ├── Cardholder.php │ │ ├── Dispute.php │ │ └── Transaction.php │ ├── LoginLink.php │ ├── OAuth.php │ ├── Order.php │ ├── OrderItem.php │ ├── OrderReturn.php │ ├── PaymentIntent.php │ ├── PaymentMethod.php │ ├── Payout.php │ ├── Person.php │ ├── Plan.php │ ├── Product.php │ ├── Radar │ │ ├── ValueList.php │ │ └── ValueListItem.php │ ├── Recipient.php │ ├── RecipientTransfer.php │ ├── Refund.php │ ├── Reporting │ │ ├── ReportRun.php │ │ └── ReportType.php │ ├── RequestTelemetry.php │ ├── Review.php │ ├── SKU.php │ ├── Sigma │ │ └── ScheduledQueryRun.php │ ├── SingletonApiResource.php │ ├── Source.php │ ├── SourceTransaction.php │ ├── Stripe.php │ ├── StripeObject.php │ ├── Subscription.php │ ├── SubscriptionItem.php │ ├── SubscriptionSchedule.php │ ├── SubscriptionScheduleRevision.php │ ├── TaxId.php │ ├── TaxRate.php │ ├── Terminal │ │ ├── ConnectionToken.php │ │ ├── Location.php │ │ └── Reader.php │ ├── ThreeDSecure.php │ ├── Token.php │ ├── Topup.php │ ├── Transfer.php │ ├── TransferReversal.php │ ├── UsageRecord.php │ ├── UsageRecordSummary.php │ ├── Util │ │ ├── AutoPagingIterator.php │ │ ├── CaseInsensitiveArray.php │ │ ├── DefaultLogger.php │ │ ├── LoggerInterface.php │ │ ├── RandomGenerator.php │ │ ├── RequestOptions.php │ │ ├── Set.php │ │ └── Util.php │ ├── Webhook.php │ ├── WebhookEndpoint.php │ └── WebhookSignature.php │ └── update_certs.php ├── submit ├── index.php ├── js │ ├── index.php │ ├── jquery.js │ └── script.js └── style.css ├── tabs (1).php ├── tabs-user.php ├── tabs.php ├── tabs2.php ├── uapinvoice.php ├── user.php ├── usermanager.php └── vendor ├── jquery-1.7.1.min.js └── jquery.hashchange.min.js /Authentication.php: -------------------------------------------------------------------------------- 1 | 0){ 14 | while($result=mysqli_fetch_array($query)) 15 | { 16 | $code=$result['client_id']; 17 | $dob=$result['dob']; 18 | include"details2.php"; 19 | } 20 | }else{ 21 | header("Location: index.php?msg=Wrong Inputs"); 22 | } 23 | // while($result=mysqli_fetch_array($query)) 24 | // { 25 | // 26 | // if($code==NULL IDENTITIY) 27 | // { 28 | // $null='yes'; 29 | // header("Location: index.php"); // Modify to go to the page you would like 30 | // exit; 31 | // } 32 | } 33 | // else 34 | // { 35 | // include"LINK.php"; 36 | // } 37 | 38 | 39 | ?> -------------------------------------------------------------------------------- /Authentificating.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Boost Software License - Version 1.0 - August 17th, 2003 2 | 3 | Permission is hereby granted, free of charge, to any person or organization 4 | obtaining a copy of the software and accompanying documentation covered by 5 | this license (the "Software") to use, reproduce, display, distribute, 6 | execute, and transmit the Software, and to prepare derivative works of the 7 | Software, and to permit third-parties to whom the Software is furnished to 8 | do so, all subject to the following: 9 | 10 | The copyright notices in the Software and this entire statement, including 11 | the above license grant, this restriction and the following disclaimer, 12 | must be included in all copies of the Software, in whole or in part, and 13 | all derivative works of the Software, unless such copies or derivative 14 | works are solely in the form of machine-executable object code generated by 15 | a source language processor. 16 | 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 18 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 19 | FITNESS FOR A PARTICULAR PURPOSE, TITLE AND NON-INFRINGEMENT. IN NO EVENT 20 | SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE 21 | FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE, 22 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER 23 | DEALINGS IN THE SOFTWARE. 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # NCS 2 | Private NCS SYSTEM 3 | -------------------------------------------------------------------------------- /action.php: -------------------------------------------------------------------------------- 1 | $values) 13 | { 14 | if($_SESSION['shopping_cart'][$keys]['product_id'] == $_POST['product_id']) 15 | { 16 | $is_available++; 17 | $_SESSION['shopping_cart'][$keys]['product_quantity'] = $_SESSION['shopping_cart'][$keys]['product_quantity'] + $_POST['product_quantity']; 18 | } 19 | } 20 | 21 | if($is_available == 0) 22 | { 23 | $item_array = array( 24 | 'product_id' => $_POST['product_id'], 25 | 'product_name' => $_POST['product_name'], 26 | 'product_price' => $_POST['product_price'], 27 | 'product_quantity' => $_POST['product_quantity'] 28 | ); 29 | $_SESSION['shopping_cart'][] = $item_array; 30 | } 31 | } 32 | else 33 | { 34 | $item_array = array( 35 | 'product_id' => $_POST['product_id'], 36 | 'product_name' => $_POST['product_name'], 37 | 'product_price' => $_POST['product_price'], 38 | 'product_quantity' => $_POST['product_quantity'] 39 | ); 40 | 41 | $_SESSION['shopping_cart'][] = $item_array; 42 | } 43 | } 44 | 45 | if($_POST['action'] == 'remove') 46 | { 47 | foreach($_SESSION['shopping_cart'] as $keys => $values) 48 | { 49 | if($values['product_id'] == $_POST['product_id']) 50 | { 51 | unset($_SESSION['shopping_cart'][$keys]); 52 | } 53 | } 54 | } 55 | if($_POST['action'] == 'empty') 56 | { 57 | unset($_SESSION['shopping_cart']); 58 | } 59 | } 60 | 61 | ?> -------------------------------------------------------------------------------- /country/LoaderIcon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/LoaderIcon.gif -------------------------------------------------------------------------------- /country/ajax-live-search-master.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master.zip -------------------------------------------------------------------------------- /country/ajax-live-search-master/.gitignore: -------------------------------------------------------------------------------- 1 | core/Config.php -------------------------------------------------------------------------------- /country/ajax-live-search-master/DOM RANGE: -------------------------------------------------------------------------------- 1 | var range = new Range(), 2 | firstText = p.childNodes[1], 3 | secondText = em.firstChild 4 | range.setStart(firstText, 9) // do not forget the leading space 5 | range.setEnd(secondText, 4) 6 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/LICENSE.txt: -------------------------------------------------------------------------------- 1 | The MIT License (MIT) 2 | 3 | Copyright (c) 2015 Ehsan Abbasi 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/core/DB.php: -------------------------------------------------------------------------------- 1 | setAttribute(\PDO::ATTR_ERRMODE, \PDO::ERRMODE_EXCEPTION); 33 | 34 | // To prevent PDO sql injection 35 | // According to http://stackoverflow.com/a/12202218/2045041 36 | self::$db->setAttribute(\PDO::ATTR_EMULATE_PREPARES, false); 37 | } catch (\PDOException $e) { 38 | echo $e->getMessage(); 39 | } 40 | } 41 | 42 | /** 43 | * @param $dbInfo 44 | * @return \PDO 45 | */ 46 | public static function getConnection($dbInfo) 47 | { 48 | if (!isset(self::$db)) { 49 | new self($dbInfo); 50 | } 51 | 52 | return self::$db; 53 | } 54 | } 55 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/core/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/core/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/ajaxlivesearch.min.css: -------------------------------------------------------------------------------- 1 | .ls_container{font-family:'Quattrocento Sans',sans-serif;text-align:center}.ls_result_div{position:absolute;background-color:#fff;font-size:17px;display:none;margin:0 auto;max-width:100%;border-radius:4px;-moz-border-radius:4px;-webkit-border-radius:4px;-o-border-radius:4px;border:1px solid #DDD;z-index:1001}.ls_result_main{overflow:auto}.ls_result_div table{width:100%;margin:0 auto;text-align:left;border-spacing:0}.ls_result_div table tr{height:40px;line-height:40px}.ls_result_div table tr td,.ls_result_div table tr th{text-align:center}.ls_result_div table tr:first-child td:first-child{border-radius:4px 0 0;-moz-border-radius:4px 0 0;-webkit-border-radius:4px 0 0;-o-border-radius:4px 0 0}.ls_result_div table tr:first-child td:last-child{border-radius:0 4px 0 0;-moz-border-radius:0 4px 0 0;-webkit-border-radius:0 4px 0 0;-o-border-radius:0 4px 0 0}.ls_result_div table tr:last-child td{border-bottom:none}.ls_result_div table td{border-bottom:1px solid #DDD}.ls_result_div table td:first-child{padding-left:9px}.error{color:red}.ls_hide{display:none}.ls_result_footer{border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;-webkit-border-radius:0 0 4px 4px;-o-border-radius:0 0 4px 4px;border-top:1px solid #DDD;height:40px}.ls_result_footer label{font-weight:400;display:inline}.ls_result_footer .navigation{margin-top:2px}.ls_result_footer .pagination{margin-top:7px;margin-bottom:0}.ls_result_footer .page_limit{margin-top:5px}.col{float:left;position:relative;width:24%}.arrow{color:#0080bb;cursor:pointer;font-size:26px}.arrow:hover{color:#276099}.ls_result_footer select{padding:0;-webkit-appearance:menulist-button;height:30px;width:65px;font-size:15px}.hover{background-color:#ececec}.border_radius{border-radius:4px!important;-moz-border-radius:4px!important;-webkit-border-radius:4px!important;-o-border-radius:4px!important}.ajax_loader{background-size:25px;background-image:url(../img/green_loader.gif);background-repeat:no-repeat;background-position:98% 46%}.ls_query{border:1px solid #ccc;height:46px;max-width:100%;padding:10px;width:550px;-webkit-border-radius:4px;-moz-border-radius:4px;-ms-border-radius:4px;-o-border-radius:4px;border-radius:4px;font-size:20px;vertical-align:middle;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;color:#282828;outline:0}.ls_query:focus{border-color:#0080bb;-webkit-box-shadow:0 0 5px #0080bb;-moz-box-shadow:0 0 5px #0080bb;box-shadow:0 0 5px #0080bb}@media(max-width:767px){.feature{text-align:center}.feature_desc{margin-top:10px}} -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/animation.css: -------------------------------------------------------------------------------- 1 | /* 2 | Animation example, for spinners 3 | */ 4 | .animate-spin { 5 | -moz-animation: spin 2s infinite linear; 6 | -o-animation: spin 2s infinite linear; 7 | -webkit-animation: spin 2s infinite linear; 8 | animation: spin 2s infinite linear; 9 | display: inline-block; 10 | } 11 | @-moz-keyframes spin { 12 | 0% { 13 | -moz-transform: rotate(0deg); 14 | -o-transform: rotate(0deg); 15 | -webkit-transform: rotate(0deg); 16 | transform: rotate(0deg); 17 | } 18 | 19 | 100% { 20 | -moz-transform: rotate(359deg); 21 | -o-transform: rotate(359deg); 22 | -webkit-transform: rotate(359deg); 23 | transform: rotate(359deg); 24 | } 25 | } 26 | @-webkit-keyframes spin { 27 | 0% { 28 | -moz-transform: rotate(0deg); 29 | -o-transform: rotate(0deg); 30 | -webkit-transform: rotate(0deg); 31 | transform: rotate(0deg); 32 | } 33 | 34 | 100% { 35 | -moz-transform: rotate(359deg); 36 | -o-transform: rotate(359deg); 37 | -webkit-transform: rotate(359deg); 38 | transform: rotate(359deg); 39 | } 40 | } 41 | @-o-keyframes spin { 42 | 0% { 43 | -moz-transform: rotate(0deg); 44 | -o-transform: rotate(0deg); 45 | -webkit-transform: rotate(0deg); 46 | transform: rotate(0deg); 47 | } 48 | 49 | 100% { 50 | -moz-transform: rotate(359deg); 51 | -o-transform: rotate(359deg); 52 | -webkit-transform: rotate(359deg); 53 | transform: rotate(359deg); 54 | } 55 | } 56 | @-ms-keyframes spin { 57 | 0% { 58 | -moz-transform: rotate(0deg); 59 | -o-transform: rotate(0deg); 60 | -webkit-transform: rotate(0deg); 61 | transform: rotate(0deg); 62 | } 63 | 64 | 100% { 65 | -moz-transform: rotate(359deg); 66 | -o-transform: rotate(359deg); 67 | -webkit-transform: rotate(359deg); 68 | transform: rotate(359deg); 69 | } 70 | } 71 | @keyframes spin { 72 | 0% { 73 | -moz-transform: rotate(0deg); 74 | -o-transform: rotate(0deg); 75 | -webkit-transform: rotate(0deg); 76 | transform: rotate(0deg); 77 | } 78 | 79 | 100% { 80 | -moz-transform: rotate(359deg); 81 | -o-transform: rotate(359deg); 82 | -webkit-transform: rotate(359deg); 83 | transform: rotate(359deg); 84 | } 85 | } 86 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/fontello-codes.css: -------------------------------------------------------------------------------- 1 | 2 | .icon-left-circle:before { content: '\e800'; } /* '' */ 3 | .icon-right-circle:before { content: '\e801'; } /* '' */ -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/fontello-ie7-codes.css: -------------------------------------------------------------------------------- 1 | 2 | .icon-left-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } 3 | .icon-right-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/fontello-ie7.css: -------------------------------------------------------------------------------- 1 | [class^="icon-"], [class*=" icon-"] { 2 | font-family: 'fontello'; 3 | font-style: normal; 4 | font-weight: normal; 5 | 6 | /* fix buttons height */ 7 | line-height: 1em; 8 | 9 | /* you can be more comfortable with increased icons size */ 10 | /* font-size: 120%; */ 11 | } 12 | 13 | .icon-left-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } 14 | .icon-right-circle { *zoom: expression( this.runtimeStyle['zoom'] = '1', this.innerHTML = ' '); } -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/fontello.css: -------------------------------------------------------------------------------- 1 | @font-face { 2 | font-family: 'fontello'; 3 | src: url('../font/fontello.eot?80008560'); 4 | src: url('../font/fontello.eot?80008560#iefix') format('embedded-opentype'), 5 | url('../font/fontello.woff?80008560') format('woff'), 6 | url('../font/fontello.ttf?80008560') format('truetype'), 7 | url('../font/fontello.svg?80008560#fontello') format('svg'); 8 | font-weight: normal; 9 | font-style: normal; 10 | } 11 | /* Chrome hack: SVG is rendered more smooth in Windozze. 100% magic, uncomment if you need it. */ 12 | /* Note, that will break hinting! In other OS-es font will be not as sharp as it could be */ 13 | /* 14 | @media screen and (-webkit-min-device-pixel-ratio:0) { 15 | @font-face { 16 | font-family: 'fontello'; 17 | src: url('../font/fontello.svg?80008560#fontello') format('svg'); 18 | } 19 | } 20 | */ 21 | 22 | [class^="icon-"]:before, [class*=" icon-"]:before { 23 | font-family: "fontello"; 24 | font-style: normal; 25 | font-weight: normal; 26 | speak: none; 27 | 28 | display: inline-block; 29 | text-decoration: inherit; 30 | width: 1em; 31 | margin-right: .2em; 32 | text-align: center; 33 | /* opacity: .8; */ 34 | 35 | margin-top: 2px; 36 | 37 | /* For safety - reset parent styles, that can break glyph codes*/ 38 | font-variant: normal; 39 | text-transform: none; 40 | 41 | /* fix buttons height, for twitter bootstrap */ 42 | line-height: 1em; 43 | 44 | /* Animation center compensation - margins should be symmetric */ 45 | /* remove if not needed */ 46 | margin-left: .2em; 47 | 48 | /* you can be more comfortable with increased icons size */ 49 | /* font-size: 120%; */ 50 | 51 | /* Uncomment for 3D effect */ 52 | /* text-shadow: 1px 1px 1px rgba(127, 127, 127, 0.3); */ 53 | } 54 | 55 | .icon-left-circle:before { content: '\e800'; } /* '' */ 56 | .icon-right-circle:before { content: '\e801'; } /* '' */ -------------------------------------------------------------------------------- /country/ajax-live-search-master/css/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/css/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/docs/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/docs/troubleshooting.md: -------------------------------------------------------------------------------- 1 | - In case you get error message: 'Something went wrong. Please refresh the page.', in Chrome right-click and choose `Inspect` then in `Network` tab click on `AjaxProcessor.php` and check the `Response`. For example: 2 | ``` 3 | SQLSTATE[42000] [1049] Unknown database 'db_name' 4 | ``` 5 | Means that you have not specified the database name in the config file properly. -------------------------------------------------------------------------------- /country/ajax-live-search-master/font/fontello.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/font/fontello.eot -------------------------------------------------------------------------------- /country/ajax-live-search-master/font/fontello.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Copyright (C) 2014 by original authors @ fontello.com 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/font/fontello.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/font/fontello.ttf -------------------------------------------------------------------------------- /country/ajax-live-search-master/font/fontello.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/font/fontello.woff -------------------------------------------------------------------------------- /country/ajax-live-search-master/font/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/font/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/img/green_loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/img/green_loader.gif -------------------------------------------------------------------------------- /country/ajax-live-search-master/img/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/img/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/index.php: -------------------------------------------------------------------------------- 1 | getJavascriptAntiBot(); 16 | ?> 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 26 | 28 | 29 | 30 | AJAX Live Search 31 | 32 | 33 | 34 | 35 | 38 | 39 | 40 | 41 | 42 | 43 |
44 | 45 |
46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/js/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/country/ajax-live-search-master/js/index.html -------------------------------------------------------------------------------- /country/ajax-live-search-master/templates/default.php: -------------------------------------------------------------------------------- 1 | '; 10 | foreach ($headers as $aHeader) { 11 | $html .= "{$aHeader}"; 12 | } 13 | $html .= ''; 14 | } 15 | 16 | /** 17 | * Body 18 | */ 19 | if (!empty($rows)) { 20 | foreach ($rows as $row) { 21 | $html .= ''; 22 | foreach ($row as $columnName => $column) { 23 | if (is_array($column)) { 24 | $content = ''; 25 | foreach ($column as $aColumnKey => $aColumnValue) { 26 | $content .= "{$aColumnKey} : {$aColumnValue} "; 27 | } 28 | 29 | $content = htmlspecialchars($content); 30 | 31 | $html .= "{$content}"; 32 | } else { 33 | $column = htmlspecialchars($column); 34 | 35 | $html .= "{$column}"; 36 | } 37 | } 38 | $html .= ''; 39 | } 40 | } else { 41 | // No result 42 | 43 | // To prevent XSS prevention convert user input to HTML entities 44 | $query = htmlentities($query, ENT_NOQUOTES, 'UTF-8'); 45 | 46 | // there is no result - return an appropriate message. 47 | $html .= "There is no result for \"{$query}\""; 48 | } 49 | 50 | return $html; 51 | -------------------------------------------------------------------------------- /country/ajax-live-search-master/templates/hiddenColumn.php: -------------------------------------------------------------------------------- 1 | '; 10 | foreach ($headers as $aHeader) { 11 | $style = (strtolower($aHeader) === 'id') ? 'display: none;' : ''; 12 | $html .= "{$aHeader}"; 13 | } 14 | $html .= ''; 15 | } 16 | 17 | /** 18 | * Body 19 | */ 20 | if (!empty($rows)) { 21 | foreach ($rows as $row) { 22 | $html .= ''; 23 | foreach ($row as $columnName => $column) { 24 | $style = (strtolower($columnName) === 'id') ? 'display: none;' : ''; 25 | 26 | if (is_array($column)) { 27 | $content = ''; 28 | foreach ($column as $aColumnKey => $aColumnValue) { 29 | $content .= "{$aColumnKey} : {$aColumnValue} "; 30 | } 31 | 32 | $content = htmlspecialchars($content); 33 | 34 | $html .= "{$content}"; 35 | } else { 36 | $column = htmlspecialchars($column); 37 | 38 | $html .= "{$column}"; 39 | } 40 | } 41 | $html .= ''; 42 | } 43 | } else { 44 | // No result 45 | 46 | // To prevent XSS prevention convert user input to HTML entities 47 | $query = htmlentities($query, ENT_NOQUOTES, 'UTF-8'); 48 | 49 | // there is no result - return an appropriate message. 50 | $html .= "There is no result for \"{$query}\""; 51 | } 52 | 53 | return $html; 54 | -------------------------------------------------------------------------------- /country/dbcontroller.php: -------------------------------------------------------------------------------- 1 | conn = $this->connectDB(); 13 | } 14 | // function connect The DATBASE 15 | function connectDB() { 16 | $conn = mysqli_connect($this->host,$this->user,$this->password,$this->database); 17 | return $conn; 18 | } 19 | 20 | function runQuery($query) { 21 | $result = mysqli_query($link,$query); 22 | while($row=mysqli_fetch_array($result, MYSQLI_ASSOC)) { 23 | $resultset[] = $row; 24 | } 25 | if(!empty($resultset)) 26 | return $resultset; 27 | } 28 | 29 | function numRows($query) { 30 | $result = mysqli_query($link,$this->conn,$query); 31 | $rowcount = mysqli_num_rows($link,$result); 32 | return $rowcount; 33 | } 34 | } 35 | ?> -------------------------------------------------------------------------------- /country/index.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | jQuery AJAX Autocomplete - Country Example 4 | 5 | 13 | 14 | 40 | 41 | 42 |
43 | 44 |
45 |
46 | 47 | -------------------------------------------------------------------------------- /country/link.php: -------------------------------------------------------------------------------- 1 | 12 | -------------------------------------------------------------------------------- /country/readCountry.php: -------------------------------------------------------------------------------- 1 | runQuery($query); 6 | if(!empty($result)) { 7 | ?> 8 | 15 | -------------------------------------------------------------------------------- /database_connection.php: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fetch_item.php: -------------------------------------------------------------------------------- 1 | prepare($query); 12 | 13 | if($statement->execute()) 14 | { 15 | $result = $statement->fetchAll(); 16 | $output = ''; 17 | foreach($result as $row) 18 | { 19 | $output .= ' 20 |
21 |
22 | 23 |
24 |

'.$row["name"].'

25 |

$ '.$row["price"].'

26 | 27 | 28 | 29 | 30 | 31 |
32 |
33 | '; 34 | } 35 | echo $output; 36 | } 37 | 38 | ?> -------------------------------------------------------------------------------- /functions/stripe-class.php: -------------------------------------------------------------------------------- 1 | true, 12 | CURLOPT_ENCODI> '', 13 | CURLO_MAXREDIRS => 10, 14 | CURLOPT_TIMEOUT => 0, 15 | CURLOPT_FOLLOWLOCATION => true, 16 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, 17 | CURLOPT_CUSOMREQUEST => 'POST', 18 | CURLOPT_POSTFIELD=> '&email='.$email.'&address%5Bcity%5D='.$city.'&address%5Bcountry%5D='.$country.'&address%5Bline1%5D=KG%20666%20St&balance=1500&name='.$fullname.'&phone='.$tel, 19 | CURLOPT_HTTPHEADER => array( 20 | 'Content-Te: applcation/x-www-form-urlencoded', 21 | 'Authorization: Bearr sk_test_51KBzxXHR1XVDkcETd9dpbkV8xEyvRQmFPShqghPWRuNi2Y0zXFaWGL0GZFNEY5Cm9ua8ibow7kcjGRnpjpIprkRV00lLiD3eGN' 22 | ), 23 | )); 24 | 25 | $response = curl_exec($curl); 26 | echo ""; 27 | curl_close($curl); 28 | 29 | } 30 | /* Function that customers' cards through stripeS */ 31 | public function cargeCustomer($amount, $customer_id){ 32 | $curl = cur_init() 33 | 34 | curl_setopt_array($curl, array( 35 | CURLOPT_URL => 'https://api.stripe.com//v1/charges', 36 | CURLOPT_RETURNTRANSFER => true, 37 | CURLOPT_ENCODING => '', 38 | CURLOPT_MAXREDIRS => 10, 39 | CURLOPT_TIMEOUT => 0, 40 | CURLOPT_FOLLOWLOCATION => true, 41 | CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1, 42 | CURLOPT_CUSTOMREQUEST => 'POST', 43 | CURLOPT_POSTFIELDS => 'amount='.$amount.'¤cy=USD&customer='.$customer_id.'&description=Paying%20for%20healthcare%20services%20-%20medEpay', 44 | CURLOPT_HTTPHEADER => array( 45 | 'Content-Type: application/x-www-form-urlencoded', 46 | 'Authorization: Bearer sk_test_51KBzxXHR1XVDkcETd9dpbkV8xEyvRQmFPShqghPWRuNi2Y0zXFaWGL0GZFNEY5Cm9ua8ibow7kcjGRnpjpIprkRV00lLiD3eGN' 47 | ), 48 | )); 49 | 50 | $response = curl_exec($curl); 51 | 52 | curl_close($curl); 53 | echo $response 54 | 55 | } 56 | } 57 | -------------------------------------------------------------------------------- /highslide/graphics/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/close.png -------------------------------------------------------------------------------- /highslide/graphics/closeX.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/closeX.png -------------------------------------------------------------------------------- /highslide/graphics/controlbar-black-border.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar-black-border.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar-text-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar-text-buttons.png -------------------------------------------------------------------------------- /highslide/graphics/controlbar-white-small.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar-white-small.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar-white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar-white.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar2.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar3.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar4-hover.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar4-hover.gif -------------------------------------------------------------------------------- /highslide/graphics/controlbar4.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/controlbar4.gif -------------------------------------------------------------------------------- /highslide/graphics/fullexpand.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/fullexpand.gif -------------------------------------------------------------------------------- /highslide/graphics/geckodimmer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/geckodimmer.png -------------------------------------------------------------------------------- /highslide/graphics/icon.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/icon.gif -------------------------------------------------------------------------------- /highslide/graphics/loader.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/loader.gif -------------------------------------------------------------------------------- /highslide/graphics/loader.white.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/loader.white.gif -------------------------------------------------------------------------------- /highslide/graphics/loader.white1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/loader.white1.gif -------------------------------------------------------------------------------- /highslide/graphics/outlines/Outlines.psd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/Outlines.psd -------------------------------------------------------------------------------- /highslide/graphics/outlines/beveled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/beveled.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/drop-shadow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/drop-shadow.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/glossy-dark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/glossy-dark.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/outer-glow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/outer-glow.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/rounded-black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/rounded-black.png -------------------------------------------------------------------------------- /highslide/graphics/outlines/rounded-white.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/outlines/rounded-white.png -------------------------------------------------------------------------------- /highslide/graphics/resize.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/resize.gif -------------------------------------------------------------------------------- /highslide/graphics/scrollarrows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/scrollarrows.png -------------------------------------------------------------------------------- /highslide/graphics/zoomin.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/zoomin.cur -------------------------------------------------------------------------------- /highslide/graphics/zoomout.cur: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/highslide/graphics/zoomout.cur -------------------------------------------------------------------------------- /img/31.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/31.jpg -------------------------------------------------------------------------------- /img/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/Thumbs.db -------------------------------------------------------------------------------- /img/bill.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/bill.png -------------------------------------------------------------------------------- /img/del.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/del.png -------------------------------------------------------------------------------- /img/edit1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/edit1.png -------------------------------------------------------------------------------- /img/find.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/find.png -------------------------------------------------------------------------------- /img/home.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/home.png -------------------------------------------------------------------------------- /img/key.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/key.png -------------------------------------------------------------------------------- /img/labo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/labo.png -------------------------------------------------------------------------------- /img/logout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/logout.png -------------------------------------------------------------------------------- /img/medepay0.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/medepay0.jpg -------------------------------------------------------------------------------- /img/patient.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/patient.png -------------------------------------------------------------------------------- /img/pres.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/pres.png -------------------------------------------------------------------------------- /img/report.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/report.png -------------------------------------------------------------------------------- /img/upd.JPG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/upd.JPG -------------------------------------------------------------------------------- /img/user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/user.png -------------------------------------------------------------------------------- /img/yes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rwema3/Php-Functions/6c26bfe94056092877dbd15294a3cb5648f353a3/img/yes.png -------------------------------------------------------------------------------- /index (1).php: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 12 | Med E-Pay 13 | 80 | 81 | 82 | 83 |
84 |
85 |
86 | 87 |
88 |
89 |
90 | 91 |
92 |
93 |

USER'S PORTAL


94 |

95 |

96 |

97 |
98 |
99 |
100 |
101 | 102 | -------------------------------------------------------------------------------- /invoice.php: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | Untitled Document 9 | 10 | 11 | 12 |
13 | 26 | 27 |
Total 28 |
30 | FRW
31 |
32 | 33 | 34 |
(%) 35 |
37 | FRW
38 |
39 | 40 | 41 |
Patient(%) 42 |
44 | FRW
45 |
46 |

47 | 48 | *NB: Quelques elements ne sont pas couverts par assurance!'; 51 | ?> 52 | 53 | 54 | -------------------------------------------------------------------------------- /js/dw_event.js: -------------------------------------------------------------------------------- 1 | // dw_event.js version date Oct 2009 2 | // basic event handling file from dyn-web.com 3 | 4 | var dw_Event = { 5 | 6 | add: function(obj, etype, fp, cap) { 7 | cap = cap || false; 8 | if (obj.addEventListener) obj.addEventListener(etype, fp, cap); 9 | else if (obj.attachEvent) obj.attachEvent("on" + etype, fp); 10 | }, 11 | 12 | remove: function(obj, etype, fp, cap) { 13 | cap = cap || false; 14 | if (obj.removeEventListener) obj.removeEventListener(etype, fp, cap); 15 | else if (obj.detachEvent) obj.detachEvent("on" + etype, fp); 16 | }, 17 | 18 | DOMit: function(e) { 19 | e = e? e: window.event; // e IS passed when using attachEvent though ... 20 | if (!e.target) e.target = e.srcElement; 21 | if (!e.preventDefault) e.preventDefault = function () { e.returnValue = false; return false; } 22 | if (!e.stopPropagation) e.stopPropagation = function () { e.cancelBubble = true; } 23 | return e; 24 | }, 25 | 26 | getTarget: function(e) { 27 | e = dw_Event.DOMit(e); var tgt = e.target; 28 | if (tgt.nodeType != 1) tgt = tgt.parentNode; // safari... 29 | return tgt; 30 | } 31 | 32 | } 33 | -------------------------------------------------------------------------------- /js/dw_viewport.js: -------------------------------------------------------------------------------- 1 | /************************************************************************* 2 | dw_viewport.js 3 | free code from dyn-web.com 4 | version date: mar 2008 5 | *************************************************************************/ 6 | 7 | var dw_Viewport = { 8 | getWinWidth: function () { 9 | this.width = 0; 10 | if (window.innerWidth) 11 | this.width = window.innerWidth - 18; 12 | else if (document.documentElement && document.documentElement.clientWidth) 13 | this.width = document.documentElement.clientWidth; 14 | else if (document.body && document.body.clientWidth) 15 | this.width = document.body.clientWidth; 16 | return this.width; 17 | }, 18 | 19 | getWinHeight: function () { 20 | this.height = 0; 21 | if (window.innerHeight) 22 | this.height = window.innerHeight - 18; 23 | else if (document.documentElement && document.documentElement.clientHeight) 24 | this.height = document.documentElement.clientHeight; 25 | else if (document.body && document.body.clientHeight) 26 | this.height = document.body.clientHeight; 27 | return this.height; 28 | }, 29 | 30 | getScrollX: function () { 31 | this.scrollX = 0; 32 | if (typeof window.pageXOffset == "number") 33 | this.scrollX = window.pageXOffset; 34 | else if (document.documentElement && document.documentElement.scrollLeft) 35 | this.scrollX = document.documentElement.scrollLeft; 36 | else if (document.body && document.body.scrollLeft) 37 | this.scrollX = document.body.scrollLeft; 38 | else if (window.scrollX) 39 | this.scrollX = window.scrollX; 40 | return this.scrollX; 41 | }, 42 | 43 | getScrollY: function () { 44 | this.scrollY = 0; 45 | if (typeof window.pageYOffset == "number") 46 | this.scrollY = window.pageYOffset; 47 | else if (document.documentElement && document.documentElement.scrollTop) 48 | this.scrollY = document.documentElement.scrollTop; 49 | else if (document.body && document.body.scrollTop) 50 | this.scrollY = document.body.scrollTop; 51 | else if (window.scrollY) 52 | this.scrollY = window.scrollY; 53 | return this.scrollY; 54 | }, 55 | 56 | getAll: function () { 57 | this.getWinWidth(); this.getWinHeight(); 58 | this.getScrollX(); this.getScrollY(); 59 | } 60 | 61 | } 62 | -------------------------------------------------------------------------------- /js/script.js: -------------------------------------------------------------------------------- 1 | /* 2 | * Author: Marco Kuiper (http://www.marcofolio.net/) 3 | */ 4 | google.load("jquery", "1.3.1"); 5 | google.setOnLoadCallback(function() 6 | { 7 | // Safely inject CSS3 and give the search results a shadow 8 | var cssObj = { 'box-shadow' : '#888 5px 10px 10px', // Added when CSS3 is standard 9 | '-webkit-box-shadow' : '#888 5px 10px 10px', // Safari 10 | '-moz-box-shadow' : '#888 5px 10px 10px'}; // Firefox 3.5+ 11 | $("#suggestions").css(cssObj); 12 | 13 | // Fade out the suggestions box when not active 14 | $("input").blur(function(){ 15 | $('#suggestions').fadeOut(); 16 | }); 17 | }); 18 | 19 | function lookup(inputString) { 20 | if(inputString.length == 0) { 21 | $('#suggestions').fadeOut(); // Hide the suggestions box 22 | } else { 23 | $.post("..\rpc.php", {queryString: ""+inputString+""}, function(data) { // Do an AJAX call 24 | $('#suggestions').fadeIn(); // Show the suggestions box 25 | $('#suggestions').html(data); // Fill the suggestions box 26 | }); 27 | } 28 | } -------------------------------------------------------------------------------- /js/tabs.js: -------------------------------------------------------------------------------- 1 | $(document).ready(function(){ 2 | $("ul#tabs li").click(function(e){ 3 | if (!$(this).hasClass("active")) { 4 | var tabNum = $(this).index(); 5 | var nthChild = tabNum+1; 6 | $("ul#tabs li.active").removeClass("active"); 7 | $(this).addClass("active"); 8 | $("ul#tab li.active").removeClass("active"); 9 | $("ul#tab li:nth-child("+nthChild+")").addClass("active"); 10 | } 11 | }); 12 | }); -------------------------------------------------------------------------------- /lib/vendor/jquery.hashchange.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery hashchange event - v1.3 - 7/21/2010 3 | * http://benalman.com/projects/jquery-hashchange-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$(' 35 | 36 | 37 |
38 | 39 |
40 | 41 | 42 | 43 | 44 | 45 | -------------------------------------------------------------------------------- /tabs2.php: -------------------------------------------------------------------------------- 1 | 8 | 9 | 10 | EasyTabs Demo 11 | 12 | 13 | 14 | 26 | 31 | 32 | 33 | 34 |
35 | 38 |
39 | 40 |
41 | 42 |
43 | 44 |
45 |
46 | 47 | 48 | -------------------------------------------------------------------------------- /user.php: -------------------------------------------------------------------------------- 1 | 2 | ::.New Client.:: 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 21 | 22 | 60 | 61 | 62 |
63 |
64 |
65 | 66 | 67 | 68 |
69 |
70 | 71 | 72 | -------------------------------------------------------------------------------- /vendor/jquery.hashchange.min.js: -------------------------------------------------------------------------------- 1 | /* 2 | * jQuery hashchange event - v1.3 - 7/21/2010 3 | * http://benalman.com/projects/jquery-hashchange-plugin/ 4 | * 5 | * Copyright (c) 2010 "Cowboy" Ben Alman 6 | * Dual licensed under the MIT and GPL licenses. 7 | * http://benalman.com/about/license/ 8 | */ 9 | (function($,e,b){var c="hashchange",h=document,f,g=$.event.special,i=h.documentMode,d="on"+c in e&&(i===b||i>7);function a(j){j=j||location.href;return"#"+j.replace(/^[^#]*#?(.*)$/,"$1")}$.fn[c]=function(j){return j?this.bind(c,j):this.trigger(c)};$.fn[c].delay=50;g[c]=$.extend(g[c],{setup:function(){if(d){return false}$(f.start)},teardown:function(){if(d){return false}$(f.stop)}});f=(function(){var j={},p,m=a(),k=function(q){return q},l=k,o=k;j.start=function(){p||n()};j.stop=function(){p&&clearTimeout(p);p=b};function n(){var r=a(),q=o(m);if(r!==m){l(m=r,q);$(e).trigger(c)}else{if(q!==m){location.href=location.href.replace(/#.*/,"")+q}}p=setTimeout(n,$.fn[c].delay)}$.browser.msie&&!d&&(function(){var q,r;j.start=function(){if(!q){r=$.fn[c].src;r=r&&r+a();q=$('