You are on page 1of 2

http://troubleshooter.

xyz/wiki/fix-usb-device-not-recognized-device-descriptor-
request-failed/

"https://nahdubai.com/fr/rat_shooting/receive.php?score="&Score& "&message=" &


TextBox.Text

1. user clicks "login with facebook" button on home page and accepts required
permissions
2. user then is redirected back to game where he will play the game
3. when the game ends/overs then he will be shown with text box where he can type
his message and click on "share on facebook" button so this is why we need
publish_actions permission to post user message on his facebook profile
4. user can click play again button to play the game

http://www.employeescorner.info/2015/05/ppsc-lecturers-past-papers-all-
subjects.html
http://thecareer.pk/2013/11/ppsc-computer-science-important-mcqs-for-lectureship-
2014-exam/

http://www.futuresmile.pk/web-developer-software-developer--job-229326

https://movieeater.com/sherlock-holmes-seasons-1-episodes-direct-download/

idm 6.28 Build 16 Final

<?php

include('db/db.php');

if(isset($_POST['post_submit']))
{
$user_type=$_POST['user_type'];
$user_name=$_POST['user_name'];
$user_surname=$_POST['user_surname'];
$user_ph_no=$_POST['user_ph_no'];
$user_mob_no=$_POST['user_mob_no'];
$user_cnic=$_POST['user_cnic'];
$user_address=$_POST['user_address'];
$user_city=$_POST['user_city'];
$user_state=$_POST['user_state'];
$user_country=$_POST['user_country'];
$user_fax=$_POST['user_fax'];
$user_email=$_POST['user_email'];
$user_job=$_POST['user_job'];
$user_company=$_POST['user_company'];

$image_name= $_FILES['image']['name'];
$image_type= $_FILES['image']['type'];
$image_size= $_FILES['image']['size'];
$image_tmp= $_FILES['image']['tmp_name'];

move_uploaded_file($image_tmp,"../client_images/$image_name");
$query = "insert into clients
(user_type,user_name,user_surname,user_ph_no,user_mob_no,user_cnic,user_address

,user_city,user_state,user_country,user_fax,user_email,user_job,user_company,image)
values
('$user_type','$user_name','$user_surname','$user_ph_no','$user_mob_no','$user_cnic
','$user_address','$user_city','$user_state','$user_country','$user_fax','$user_ema
il','$user_job','$user_company','$image_name')";

$run = mysqli_query($conn,$query);
if($run)
{
echo "<script>window.open('index.php?post=Post has been
published','_self')</script>";
}

?>

You might also like