I will design mvc razor view pageSimple layoutAdmin Lte Layout Admin User Multiusershttps://www.fiverr.com/share/RBv...
- on 12:19:00 am
- No comments
Removing Blemishes
Steps:
1. Removing blemishes is a great place to start skin retouching
2. Create a new layer
3. Select “Spot Healing Brush” tool
4. Click on “Sample All Layers”
5. Choose “Content-Aware” option
6. "Zoom In" so you can clearly see...
Admin Page in PHP
in
PHP
- on 1:18:00 pm
- No comments
<html>
<head>
<meta charset="UTF-8">
<meta name="author" content="Muhammad Yasir">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="admin.css">
...
HTML,CSS and PHP Code for Insert, Delete and Update Querris
First file that save in Name of insertdelupdate.php
<?php
include('server.php');
if(isset($_GET['edit']))
{
$id=$_GET['edit'];
$edit_state=true;
$rec = mysqli_query($db,"SELECT * FROM info where id=$id");
$record=mysqli_fetch_array($rec);
...
Coding of Calculator in C++ using Class
in
C++
- on 5:56:00 pm
- No comments
#include<iostream>
#include<conio>
class calc
{
public:
void add()
{
int a,b,c;
cout<<"enter the values"<<endl;
cin>>a>>b;
c=a+b;
cout<<"result is "<<c<<endl;
}
void sub()
{
int aa,bb,cc;
cout<<"enter...