Use this tag in head to refresh the web page. content=30 , it is the time duration in seconds to refresh automatically <meta http-equiv=”refresh” content=”30″>
Read MorePHP
How to make slug removing whitespaces in php
$data = “new & item @ send to & be”; $data_slug = trim($data); //$search = array(‘/’,’\\’,’:’,’;’,’!’,’@’,’#’,’$’,’%’,’^’,’*’,'(‘,’)’,’_’,’+’,’=’,’|’,'{‘,’}’,'[‘,’]’,'”‘,”‘”,'<‘,’>’,’,’,’?’,’~’,’`’,’&’,’ ‘,’.’); $search = array(‘/’,’\\’,’:’,’;’,’!’,’@’,’#’,’$’,’%’,’^’,’*’,'(‘,’)’,’_’,’+’,’=’,’|’,'{‘,’}’,'[‘,’]’,'”‘,”‘”,'<‘,’>’,’,’,’?’,’~’,’`’,’&’,’.’); $data_slug = str_replace($search, ” “, …
Read Morehow to make an unique array from duplicate value containing array
<?php $allphone = array( ‘11111’, ‘22222’, ‘33333’, ‘44444’, ‘55555’, ‘55555’, ‘66666’, ‘+66666’, ‘77777’, ‘88888’, ‘99999’, ‘00000’); echo “Duplicate value Array: “; echo “<br>”; print_r($allphone); echo …
Read Morehow to search duplicate elements from array and creates unique array
<?php $allphone = array( ‘11111’, ‘22222’, ‘33333’, ‘44444’, ‘55555’, ‘55555’, ‘66666’, ‘+66666’, ‘77777’, ‘88888’, ‘99999’, ‘00000’); echo “Mixed Array: “.”<br>”; print_r($allphone); echo “<br>”; $narr = …
Read Morehow to search an element in an array using php
<?php // SEARCHING ELEMENTS IN AN ARRAY // FIND IN THIS ARRAY $allphone = array( ‘9831458564’, ‘9831256415’, ‘9854657616’, ‘9654857617’, ‘9645877618’, ‘8569877898’, ‘5824578985’, ‘12345678’, ‘584587258’, ‘5265487’, …
Read Moredifference between Payumoney and payubiz payment gateway
PayU Payment Gateway has two unit 1. PayUbiz 2. Payumoney PayUbiz: It provides fast payment sattlement. When user paid at that time payment transferred to …
Read MoreWhat is responded parameter after payment by PayUbiz payment gateway
Response parameters Below are the response parameters that is posted by PayU to Merchant 1 . mihpayid: It is a unique reference number created for …
Read Morewhat is POST request data and its meaning for PayUbiz
Post Request (Non-seamless) Below parameters needs to be posted by Merchant to PayU in Transaction Request key (Mandatory) : This parameter is the unique Merchant …
Read Morewhat is the test credentials for PayUMoney
PayUMoney Test Mode er credentials:: Test Card Name: any name Test Card Number: 5123456789012346 Test CVV: 123 Test Expiry: May 2017
Read MoreWhat is PayUMoney returned value after success in php
All value is posted. The datas are: Array ( [mihpayid] => 403993715514357757 [mode] => DC [status] => success [unmappedstatus] => captured [key] => DgdPazAK [txnid] …
Read More