The following checklist should be actioned after all major development work has been completed.
Check the website:
- Responds to different devices and screen sizes appropriately.
- The design of the site is displayed as expected.
<?php | |
//https://wa.me/+99123456789?text=Line%0aBreak | |
//The %0a represents the line break | |
$message = urlencode("**NEW ORDER**")."%0a"; | |
$message .= urlencode("ProductID : $product_id")."%0a"; | |
$message .= urlencode("Product Name : *$product_name*")."%0a"; | |
$message .= urlencode("***************")."%0a"; | |
$message .= urlencode("Customer Name : *$name*")."%0a"; |
<input type="text" pattern="03[0-9]{2}-(?!1234567)(?!1111111)(?!7654321)[0-9]{7}" name="mobile_number" placeholder="Mobile Number" required> |
https://www.buyon.pk/sell-on-buyon | |
https://www.goto.com.pk/sell-on-goto | |
https://faisalfabrics.pk/pages/sell-on-faisalfabrics-pk | |
https://www.pakstyle.pk/info/sell-on-pakstyle | |
https://themes.pk/sell-on-themes/ | |
https://digitaldukaan.pk/sell-on-digital-dukaan/ | |
https://www.sellwhatever.com/createstore | |
https://www.telemart.pk/vendor/register | |
https://grocers.com.pk/pages/sell-on-grocers | |
https://plant.pk/become-a-vendor/ |
Abbottabad, Khyber Pakhtunkhwa, Pakistan | |
Ahmed Khel, Khyber Pakhtunkhwa, Pakistan | |
Al Hamra Hills, Islamabad Capital Territory, Pakistan | |
Allama Iqbal Town, Punjab, Pakistan | |
Attock, Punjab, Pakistan | |
Azad Jammu and Kashmir, Pakistan | |
Bahawalpur, Punjab, Pakistan | |
Bahria Enclave, Islamabad Capital Territory, Pakistan | |
Bahria Town Karachi, Sindh, Pakistan | |
Bin Qasim Town, Sindh, Pakistan |
DROP TABLE IF EXISTS dates; | |
CREATE TABLE dates ( | |
idDate INTEGER PRIMARY KEY, -- year10000+month100+day | |
fulldate DATE NOT NULL, | |
year INTEGER NOT NULL, | |
month INTEGER NOT NULL, -- 1 to 12 | |
day INTEGER NOT NULL, -- 1 to 31 | |
quarter INTEGER NOT NULL, -- 1 to 4 | |
week INTEGER NOT NULL, -- 1 to 52/53 | |
dayOfWeek INTEGER NOT NULL, -- 1 to 7 |
<?php | |
require('../functions.php'); | |
$order_id = isset($_POST['order_id'])?(int)$_POST['order_id']:die('Whoops..! Something went wrong'); | |
$order = DB::queryFirstRow("SELECT * FROM oc_order o | |
WHERE o.`order_id` = '".$order_id."'"); | |
$weight = $_POST['weight']; |
<select class="form-control" required | |
name="country" id="country"> | |
<option value="Afghanistan">Afghanistan</option> | |
<option value="Albania">Albania</option> | |
<option value="Algeria">Algeria</option> | |
<option value="American Samoa">American Samoa</option> | |
<option value="Andorra">Andorra</option> | |
<option value="Angola">Angola</option> | |
<option value="Anguilla">Anguilla</option> | |
<option value="Antartica">Antarctica</option> |