-
Notifications
You must be signed in to change notification settings - Fork 3
/
insert.php
46 lines (40 loc) · 1.03 KB
/
insert.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php
$arrayname =
array (
"أحمد",
"سليم",
"فاطمة",
"سهام",
"عماد",
"جمال",
"فوزي",
"سراج",
"مصعب",
"محمد",
"محمود",
"كمال",
"علاء",
"عصام",
"عادل",
"خالد",
"ايمن",
"سعيد",
"عبدالسلام",
"عبدالرحمن",
"يوسف",
"منصور",
"عامر",
"ريان",
"عبدالله",
"حاتم",
"صالح",
"صلاح"
)
require_once("db/db.php");
for($i =200; $i>250 ; i++){
$insertstmt= "INSERT INTO `job_seeker` (`fname` ,`lname` ,`birth_day`,`gender`,`email`,`password`,`date_register` ,`is_active`,`activation`)";
$insertstmt="VALUE ('$fname', '$lname', '$rdate','m', '$email','$txt_pass','$datereg','1','$activation' )");
$inserts = mysqli_query($mysqli,"INSERT INTO `job_seeker` (`fname` ,`lname` ,`birth_day`,`gender`,`email`,`password`,`date_register` ,`is_active`,`activation`)")
VALUE ('$fname', '$lname', '$rdate','$gender', '$email','$txt_pass','$datereg','$is_active','$activation' )");
}
?>