Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6808005
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:54:07+00:00 2026-05-26T19:54:07+00:00

<?php $startX = 2; $startY = 5; $fieldHeight = 6; $fieldWidth = 6; $player[2][5]

  • 0
<?php
$startX = 2;
$startY = 5;

$fieldHeight = 6;
$fieldWidth = 6;

$player[2][5] = 1;


echo "<table>";
for ($y=$startY; $y<$fieldHeight+$startY+$fieldHeight; $y++) {
   echo "<tr>";
   for ($x=$startX; $x<$fieldWidth+$startX+$fieldWidth; $x++) {
       echo "<td>";
        if (isset($player[$x][$y])) {
            echo "UID: " . $player[$x][$y];
        } else {
            echo "(" . $x . ", " . $y . ")";
        }
       echo "</td>";
   }
   echo "</tr>";
}
echo "</table>";

Would output:

UID: 1  (3, 5)  (4, 5)  (5, 5)  (6, 5)  (7, 5)  (8, 5)  (9, 5)  (10, 5) (11, 5) (12, 5) (13, 5)
(2, 6)  (3, 6)  (4, 6)  (5, 6)  (6, 6)  (7, 6)  (8, 6)  (9, 6)  (10, 6) (11, 6) (12, 6) (13, 6)
(2, 7)  (3, 7)  (4, 7)  (5, 7)  (6, 7)  (7, 7)  (8, 7)  (9, 7)  (10, 7) (11, 7) (12, 7) (13, 7)
(2, 8)  (3, 8)  (4, 8)  (5, 8)  (6, 8)  (7, 8)  (8, 8)  (9, 8)  (10, 8) (11, 8) (12, 8) (13, 8)
(2, 9)  (3, 9)  (4, 9)  (5, 9)  (6, 9)  (7, 9)  (8, 9)  (9, 9)  (10, 9) (11, 9) (12, 9) (13, 9)
(2, 10) (3, 10) (4, 10) (5, 10) (6, 10) (7, 10) (8, 10) (9, 10) (10, 10)    (11, 10)    (12, 10)    (13, 10)
(2, 11) (3, 11) (4, 11) (5, 11) (6, 11) (7, 11) (8, 11) (9, 11) (10, 11)    (11, 11)    (12, 11)    (13, 11)
(2, 12) (3, 12) (4, 12) (5, 12) (6, 12) (7, 12) (8, 12) (9, 12) (10, 12)    (11, 12)    (12, 12)    (13, 12)
(2, 13) (3, 13) (4, 13) (5, 13) (6, 13) (7, 13) (8, 13) (9, 13) (10, 13)    (11, 13)    (12, 13)    (13, 13)
(2, 14) (3, 14) (4, 14) (5, 14) (6, 14) (7, 14) (8, 14) (9, 14) (10, 14)    (11, 14)    (12, 14)    (13, 14)
(2, 15) (3, 15) (4, 15) (5, 15) (6, 15) (7, 15) (8, 15) (9, 15) (10, 15)    (11, 15)    (12, 15)    (13, 15)
(2, 16) (3, 16) (4, 16) (5, 16) (6, 16) (7, 16) (8, 16) (9, 16) (10, 16)    (11, 16)    (12, 16)    (13, 16)

As you can see in the left TOP corner, the UID: 1 is placed, I want it in the middle, but I don’t know how…

I guess I would need do take the coordinates, below the startX or something, but what if there is – coordinates, I would just put out a specific test instead, is this possible?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:54:07+00:00Added an answer on May 26, 2026 at 7:54 pm

    Ok so

    $startX = 2;
    $startY = 5;
    
    $player[2][5] = 1;
    

    You then ask for two for loops using $startX and $startY as the base integers for the loop. Therefore the first item to be printed out will be $player[2][5] (or $player[$startX][$startY]) based on your if clause.

    To demo where you’ve gone wrong with your current script: Change $startX = 1; and $startY = 1 and the UID will be printed at $x = 2 and $y = 5.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

<?php session_start(); if(isset($_SESSION['views'])) $_SESSION['views'] = $_SESSION['views']+ 1; else $_SESSION['views'] = 1; echo views =
I have this code <?php session_start(); if (isset($_GET[cmd])) $cmd = $_GET[cmd]; else die(You should
index.php session_start(); if(!isset($_GET['n'])) { $_SESSION['foo'] = bar; header(Location: /index.php?n=D); } echo FOO: .$_SESSION['foo']; This
<?php session_start(); include(connect.php); $timeout = 60 * 30; $fingerprint = md5($_SERVER['REMOTE_ADDR'] . $_SERVER['HTTP_USER_AGENT']); if(isset($_POST['userName']))
here is the code <?php session_start(); if(!isset($_SESSION['user_name'])) { header('Location: login.php'); } $conn = mysql_connect(localhost,
I have a very simple test page for PHP session. <?php session_start(); if (isset($_SESSIONS['views']))
when I run this code for the first time <?php session_start(); echo SID; ?>
Can you run some script before the uploading of a file starts in php?
my code- <?php session_start(); $_SESSION['errors']=failed; ?> <head> function myfunc() { alert(<?php echo $_SESSION['errors']; ?>);
<?php session_start(); // store session data $_SESSION['count']=0; ?> <html><head></head> <body> <?php include (getElement.php); echo

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.