Is there a way to automatically split a long three columned HTML table into more columns [closed]
Closed last month.
Implementation of Loading Bar on Specific Pages of a Website
Problem Description:
I am trying to add a loading bar to certain pages on my website. I have the pieces of code that I think will do the job, but I’m having trouble integrating them into the original dashboard.php file. I want the loading bar to display when navigating between pages.
I have a view more button for my container but i cant expand fully my video
i have a view more function and it works well with only paragraph and image.
when i have insert paragraph and video together in one container. the expand cannot cover the video
How Do I make my sliding login/register page display the correct container
I Basically copied one of those sliding login/register pages, customized the CSS a bit and now I started doing backend for my project, I got to the part where I want to redirect users to register, but it opens the login form by default, then when they press sign up it slides over, is there a way of making the page do the animation on its own so when users click on register they don’t have to click on sign up for it to slide over?
Content Management System (CMS)
Halo, i have a question, normally what kind of details do we need to write except User-friendly interface on edit, deleting and adding content? but why do we need to give User to edit the content and how does it works?
как получить несколько страниц сайта по xmlHttp = new XMLHttpRequest(); [closed]
Closed 31 secs ago.
Having trouble with javascript/php/html/css
im trying to debug a problem with my code, i have a main index.php page that shows a list of chapters and when clicked i am brought into another directory /chapters/chapter1/index.php. I am using a template system and im loading the template fine, i have it seperated into an intro container that gives basic information and a button to start lesson which should bring me to a split container that is a split in half page with information to the left and information to the right that isnt implemeneted yet. However when i click the start lesson button my code is returning a null value instead of the chapterid that should be properly linked and im unsure how to fix the problem
Php dispay date if exists in database
<?php session_start(); // Start or resume the session header(“Cache-Control: no-store, no-cache, must-revalidate, max-age=0”); header(“Cache-Control: post-check=0, pre-check=0”, false); header(“Pragma: no-cache”); require_once ‘../db.php’; date_default_timezone_set(“Asia/Calcutta”); if(isset($_POST[’email’])) { $email = $conn->real_escape_string($_POST[’email’]); $sql = “SELECT date FROM jagran WHERE email = ‘$email'”; $result = $conn->query($sql); if ($result->num_rows > 0) { $row = $result->fetch_assoc(); echo $row[‘date’]; } else { echo “”; […]
I am working on school Social Engineering project where we have to create an harvesting credentials site yet cant seem to save passcode
the problem is that I have a phishing site that i found on github , i would like to expand upon it to store entered username and password. The issue is it is in HTML and im not too sure how to approach t his task. I tried using php but only the username saves for some reason.
PHP – How to Structure Your First Project’s Root Folder
So I’m brand new to PHP and programming in general, but I want to make sure I’m starting with Best Practices so I don’t have to do a mass reorganization later. This has led me down a rabbit hole on how to structure /root and all the things you would typically include.