Jump to content

Integrate some code into another


idino
Go to solution Solved by ginerjm,

Recommended Posts

Good morning, I created a section in a php page as shown in the image.

The line marked with number 1 is generated by this code called today.php:

<?php
function myTab()
{
    echo str_repeat('&nbsp;', 3);
}

function templateDay($start, $end)
{
    $dayOfWeek = ['LUN', 'MAR', 'MER', 'GIO', 'VEN', 'SAB', 'DOM'];   
    $toDay = date('N') - 1;

    for ($i = $start; $i < $end; $i++) {
        echo $dayOfWeek[$toDay] === $dayOfWeek[$i] ? "<a style='color:red'>" . 'OGGI' . '</a>' . myTab() : "" . $dayOfWeek[$i] . '</a>' . myTab();
    }
}
templateDay(3, 7);
templateDay(0, 3);
?>

while line 2 gives this other:

<div class="container section" id="afterHeader">
                                <div class="row">                                   
                                        <div class="tabs movies">
                                        <a class="style1">1^ SETTIMANA</a>
                                        
                                         <p><?php require "./oggi.php";?></p>
                                        
                                            <ul>                                   
                                                <li><a href="#thu">GIO</a></li>
                                                <li><a href="#fri">VEN</a></li>
                                                <li><a href="#sat">SAB</a></li>
                                                <li><a href="#sun">DOM</a></li>
                                                <li><a href="#mon">LUN</a></li>
                                                <li><a href="#tue">MAR</a></li>
                                                <li><a href="#wed">MER</a></li>
                                                </ul>

I would need to replace row "2" with row "1" Who can help me? Thank you all

d17191e3-686d-4bed-bdd4-b141bfceade8.png

Link to comment
Share on other sites

It looks like row 1 is called within your code by this line:

<p><?php require "./oggi.php";?></p>

So just move that below the closing 

</ul>

Like so:

<div class="container section" id="afterHeader">
	<div class="row">                                   
		<div class="tabs movies">
			<a class="style1">1^ SETTIMANA</a>
                      
			<ul>                                   
				<li><a href="#thu">GIO</a></li>
				<li><a href="#fri">VEN</a></li>
				<li><a href="#sat">SAB</a></li>
				<li><a href="#sun">DOM</a></li>
				<li><a href="#mon">LUN</a></li>
				<li><a href="#tue">MAR</a></li>
				<li><a href="#wed">MER</a></li>
			</ul>

			<p><?php require "./oggi.php";?></p>

That will then swap line 1 and 2 of your image over

Link to comment
Share on other sites

I try to explain myself better.

http://www.progettolumiere.it/home.php

This is example page I want to edit. I have to replace the line where the days of the week appear, with the code "oggi.php"

The days of the week have a link that displays the schedule for that day (see example) I don't know how to make the page work the same way, replacing the code.

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.