-
Notifications
You must be signed in to change notification settings - Fork 2
/
company.php
30 lines (28 loc) · 1.42 KB
/
company.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
<section class="company">
<div id="company">
<h2 id="company-h2">WHY ROBOTS?</h2>
<p id="company-p">
All the Companies presented in the slider believe that robots will soon be everywhere,
so the question is that:
</p> <br>
<center> "How can we nurture them to be our friends and useful collaborators?" </center> <br>
<p id="company-p">
To this question, they reply robots with good aesthetic design, rich personalities,
and social-cognitive intelligence can potentially connect deeply and meaningfully with humans.
There are many organizations that are working in the field of AI.
But the organizations which are presented in the slider are the top organizations that have made few
humanoids and AI robots.
</p>
</div>
<div class="company-carousel" data-flickity='{ "groupCells": true, "autoPlay": true, "freeScroll": true, "wrapAround": true }'>
<?php
$searchBtn = "SELECT * FROM companies";
$search_qurey = mysqli_query($connect,$searchBtn);
if($search_qurey == true){
while($myData = mysqli_fetch_array($search_qurey)){ ?>
<div>
<img src="<?php echo $myData['src']?>" alt="<?php echo $myData['alt']?>" class="company-carousel-cell">
</div>
<?php }}?>
</div>
</section>