Skip to content
Open
Show file tree
Hide file tree
Changes from 16 commits
Commits
Show all changes
23 commits
Select commit Hold shift + click to select a range
5e80d64
Merge pull request #7 from ibrahimcan98/ibrahim
Ibogr Apr 12, 2025
f33c485
fix small mistakes
ibrahimcan98 Apr 13, 2025
e16ce87
fix small mistakes and create footer.php and nav.php
ibrahimcan98 Apr 16, 2025
4186950
white text style
ibrahimcan98 Apr 16, 2025
728b2fd
small changes
ibrahimcan98 Apr 16, 2025
a11221e
updates to index page with the use of nav and footer php include
ne-el-al Apr 17, 2025
8e41a9d
Merge pull request #12 from ibrahimcan98/php-updates
ne-el-al Apr 17, 2025
9556495
Update all html to php files, save html files to separate folder for …
ne-el-al Apr 17, 2025
e32bbee
Merge branch 'main' into php-updates
ne-el-al Apr 17, 2025
8c3f50d
Merge pull request #15 from ibrahimcan98/php-updates
ne-el-al Apr 17, 2025
332c9e2
rename sign up css file
ne-el-al Apr 17, 2025
a41e5a3
fixed connection in all files and update to js animation
ne-el-al Apr 17, 2025
b034ef1
nav php
ibrahimcan98 Apr 17, 2025
20ab0eb
Fix dropdown login and sign in menu
ne-el-al Apr 17, 2025
fe9c76d
Merge branch 'main' of https://github.com/ibrahimcan98/WEB-PROJECT
ne-el-al Apr 17, 2025
51a2584
fix
ne-el-al Apr 17, 2025
b828d84
GENERAL CONTROL ALL THE PAGES
ibrahimcan98 Apr 17, 2025
3ed34dd
Merge branch 'main' of https://github.com/ibrahimcan98/WEB-PROJECT
ibrahimcan98 Apr 17, 2025
64e2e66
FINISH HIM
ibrahimcan98 Apr 18, 2025
19b237c
1
ibrahimcan98 Apr 18, 2025
dc433ed
finished finally
ibrahimcan98 Apr 18, 2025
d73e6b2
fixed tags
ibrahimcan98 Apr 18, 2025
ebc1912
when we delete it was deleting all off booking , and when we edit it …
ibrahimcan98 Apr 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
154 changes: 0 additions & 154 deletions about.html

This file was deleted.

45 changes: 45 additions & 0 deletions about.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
<?php
$page_title = "About";
include("app/nav.php");
?>

<!-- MAIN SECTION -->
<section id="about">
<img src="./media/profile_ivana.jpeg" alt="Photographer Ivana" />
<article class="about_her">
<h1>My name is <span>Ivana Tumbeva</span></h1>
<p>
I have been a family and portrait photographer for 5 years,
capturing genuine emotions and timeless moments. Since 2022, I have
been studying photography at Griffith College Dublin, continuously
refining my skills and artistic vision.
</p>
<p>
As a photographer, I am deeply passionate about capturing raw emotions and the unspoken beauty of human connection.
Portrait and family photography allow me to freeze moments of love, laughter, and vulnerability, turning them into timeless memories.
Through my lens, I strive to reveal not just faces, but the depth of feelings that make each person unique.
Photography, to me, is more than an art—it’s a way to honor relationships, preserving the warmth of a touch or the sparkle in someone’s eyes.
</p>
<!-- Education and Awards list -->
<ul>
<li>
<h2>Education</h2>
<ul>
<li>Griffith College, Dublin (since 2022)</li>
</ul>
</li>
<li>
<h2>Awards</h2>
<ul>
<li>LensCulture Portrait Awards, 2023</li>
<li>CEWE Photo Award, 2022</li>
<li>Young Photographer of the Year Awards, 2020</li>
</ul>
</li>
</ul>
</article>
</section>

<?php
include("app/footer.php");
?>
Empty file added account.php
Empty file.
4 changes: 2 additions & 2 deletions connection.php → app/connection.php
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
<?php
echo"php is working...";
// echo"php is working...";

ini_set('display_errors', 1);
error_reporting(E_ALL);

$conn=mysqli_connect("localhost", "root", "", "photoBlog");
$conn=mysqli_connect("localhost", "root", "", "SEWA");
mysqli_set_charset($conn,"UTF8");

if (mysqli_connect_errno() > 0) {
Expand Down
37 changes: 37 additions & 0 deletions app/footer.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
<!-- Script -->
<script src="./javascript/script.js"></script>
<!-- SwiperJS Script for image carousel -->
<script src="https://cdn.jsdelivr.net/npm/swiper@11/swiper-bundle.min.js"></script>
<script src="./javascript/swiper.js"></script>

<!-- FOOTER -->
<footer>
<div id="container">
<address class="contact">
<h3>Contact Me:</h3>
<p>+353 01 234 56 78</p>
<p>first.last@domain.com</p>
</address>
<article class="pages">
<nav class="footer-menu">
<li class="footer-item"><a href="about.php" class="footer-link">About Me</a></li>
<li class="footer-item"><a href="service.php" class="footer-link">Service</a></li>
<li class="footer-item"><a href="gallery.php" class="footer-link">Gallery</a></li>
<li class="footer-item"><a href="login.php" class="footer-link">Log in</a></li>
</nav>
</article>
<article class="footer-links">
<h3>Follow me:</h3>
<section class="social-media">
<a href="https://www.instagram.com/ivanatumbeva_photo/" target="_blank"><i class="fa-brands fa-instagram"></i></a>
<a href="https://www.facebook.com/ivana.tumbeva" target="_blank"><i class="fa-brands fa-facebook"></i></a>
</section>
<a class="button_dark" href="booking.php">Book</a>
</article>
</div>
<section class="madeby">
® Group K (Elvira Negreeva, Ibrahim Can Onder, Ibrahim Gurses), Griffith College, 2025
</section>
</footer>
</body>
</html>
59 changes: 59 additions & 0 deletions app/nav.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<?php
echo "<title>".$page_title."</title>";
?>
<!-- Font awesome -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css" />
<!-- Google fonts -->
<link rel="preconnect" href="https://fonts.googleapis.com" />
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin />
<link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Inline:wght@400;700&family=Roboto:wght@400;700&display=swap" rel="stylesheet" />
<!-- CSS -->
<link rel="stylesheet" href="./css/style.css" />
<link rel="stylesheet" href="./css/navbar.css" />
<link rel="stylesheet" href="./css/footer.css" />
<link rel="stylesheet" href="./css/tablet.css" />
<link rel="stylesheet" href="./css/desktop.css" />
<?php
$link_style_start = '<link rel="stylesheet" href='.'"';
$link_style_end = '"/>';
if ($page_title == "Booking") {
echo $link_style_start.'./css/booking.css'.$link_style_end;
}
if ($page_title == "Sign Up" || $page_title == "Login") {
echo $link_style_start."./css/login_signup.css".$link_style_end;
}
?>
</head>
<body>
<!-- NAVBAR -->
<header>
<nav id="navbar">
<a href="index.php" class="nav-branding"><img src="./media/logo.webp" alt="" /></a>
<ul class="nav-menu">
<li class="nav-item"><a href="index.php" class="nav-link">Home</a></li>
<li class="nav-item"><a href="booking.php" class="nav-link">Book</a></li>
<li class="nav-item"><a href="about.php" class="nav-link">About</a></li>
<li class="nav-item"><a href="service.php" class="nav-link">Service</a></li>
<li class="nav-item"><a href="gallery.php" class="nav-link">Gallery</a></li>
</ul>
<section class="account">
<a href="#" class="nav-link user"><i class="fa-regular fa-user"></i></a>
</section>
<ul class="logsing-menu">
<li class="logsing-item"><a href="login.php">Log In</a></li>
<li class="logsing-item"><a href="signup.php">Sign Up</a></li>
</ul>
<aside class="hamburger">
<span class="bar"></span>
<span class="bar"></span>
<span class="bar"></span>
</aside>
</nav>
</header>
</body>
</html>
Loading