• 0

Help with PHP/mySQL script


Question

I have a script that I've had made for a site I look after, and the coder has created it in a way where it doesn't look to make modifying the design of it all that easy.

It is full PHP, he hasn't added any HTML apart from in the echo.

I know nothing about PHP, hence I asked for this to be made.

The below snippet of code is what I mean, and I'm wondering how I would go about making it so it is a basic HTML file, calling the mySQL data from the DB.


function printlogo($data){

$teamA = getTeamA($data);
$teamB = getTeamB($data);

echo "<tr><td align='center' width='35' height='40'><img src='".getLogo($teamA)."'></td><td align='center' width='30'></td><td align='center' width='35'><img src='".getLogo($teamB)."'></td></tr>";
}
[/CODE]

I appreciate any help. I'm happy to send the file for anyone to look over and provide help.

Thanks in advance.

Link to comment
https://www.neowin.net/forum/topic/1131982-help-with-phpmysql-script/
Share on other sites

12 answers to this question

Recommended Posts

  • 0



function printlogo($data){
$teamA = getTeamA($data);
$teamB = getTeamB($data);
}
[/CODE]

[CODE]
<tr>
<td align='center' width='35' height='40'>
<img src="<?php printlogo($teamA) ?>" />
</td>
<td align='center' width='30'></td>
<td align='center' width='35'>
<img src="<?php printlogo($teamB) ?>" /></td>
</tr>
[/CODE]

should work :)

also you had Function printlogo but the html had getlogo

  • 0



function printlogo($data){
$teamA = getTeamA($data);
$teamB = getTeamB($data);
}
[/CODE]

[CODE]
<tr>
<td align='center' width='35' height='40'>
<img src="<?php printlogo($teamA) ?>" />
</td>
<td align='center' width='30'></td>
<td align='center' width='35'>
<img src="<?php printlogo($teamB) ?>" /></td>
</tr>
[/CODE]

should work :)

also you had Function printlogo but the html had getlogo

That doesn't seem to do anything for me. When I test it, it doesn't show anything.

Here is a bigger section of the code, I'm not sure if there is more there that could be of use.

[CODE]
/**
*
* Returns first team's name
*/

function getTeamA($data){
return $data['team1'];
}


/**
*
* Returns second team's name
*/

function getTeamB($data){
return $data['team2'];
}

function getScoreA($data){
return $data['score1'];
}

function getScoreB($data){
return $data['score2'];
}

function getLogo($team){
$team=strtolower($team);
return "images/$team.png";
}

function printlogo($data){

$teamA = getTeamA($data);
$teamB = getTeamB($data);

echo "<tr><td align='center' width='35' height='40'><img src='".getLogo($teamA)."'></td><td align='center' width='30'></td><td align='center' width='35'><img src='".getLogo($teamB)."'></td></tr>";
}
[/CODE]

  • 0

Hi there.

Here is the entire code:


<!--Live Scores-->
<?PHP

include('library/database.php');
$db = new database();

/****
* If no match is defined to be showed
* Chooses the first match from the list
*
*/

function randomMatch()
{
$match=-1;
$q = "SELECT * FROM game WHERE active = '1'";
$r = mysql_query($q) or die("Error in selecting first match: ".mysql_error());
if(mysql_num_rows($r)==0){
echo "NO MATCH IS CURRENTLY ACTIVE!";
exit;
}

while($row = mysql_fetch_array($r)){
$match = $row['id'];
break;
}
return $match;
}

/**
*
*
*
*/

function thisMatch(){
return $_REQUEST['match'];
}

/**
*
* Returns Id of the current match.
* if an id is specified then thisMatch();
* else randomMatch is called
*
*/

function getId(){
$id=-1;
if(!isset($_REQUEST['match'])){ //GET parameter null
$id = randomMatch();
}
else $id = thisMatch();

if($id==-1){
reportExit();
return -1;
}
return $id;
}

/**
*
* Data variable keeps the data of the row with fixed id
*
*/

function fetchData(){
$id = getId();

if($id==-1)return -1;
$q1 = "SELECT * FROM game WHERE id = '$id'";
$r1 = mysql_query($q1) or die("Error in fetching first active match, Level: 1:: ".mysql_error());
$data = mysql_fetch_assoc($r1) or die("Error in fetching first active match, Level: 2:: ".mysql_error());;
return $data;
}

/**
*
* If No match is currently active, do exit
*
*/

function reportExit(){
echo "No match is currently active!";
exit;
}

/**
*
* Returns first team's name
*/

function getTeamA($data){
return $data['team1'];
}


/**
*
* Returns second team's name
*/

function getTeamB($data){
return $data['team2'];
}

function getScoreA($data){
return $data['score1'];
}

function getScoreB($data){
return $data['score2'];
}

function getLogo($team){
$team=strtolower($team);
return "images/$team.png";
}

function printlogo($data){

$teamA = getTeamA($data);
$teamB = getTeamB($data);

echo "<tr><td align='center' width='35' height='40'><img src='".getLogo($teamA)."'></td><td align='center' width='30'></td><td align='center' width='35'><img src='".getLogo($teamB)."'></td></tr>";
}

function printName($data){

$teamA = "<B>".getTeamA($data)."</B>";
$teamB = "<B>".getTeamB($data)."</B>";

echo "<tr><td align='center' width='35' height='40'>$teamA</td><td align='center' width='30'></td><td align='center' width='35'>$teamB</td></tr>";
}

function printScore($data){

$scoreA = "<B>".getScoreA($data)."</B>";
$scoreB = "<B>".getScoreB($data)."</B>";

echo "<tr><td align='center' width='35' height='40'>$scoreA</td><td align='center' width='30'></td><td align='center' width='35'>$scoreB</td></tr>";
}

function printPlayers($data,$id){
echo "<TD width='35%' style='border:0' valign='top'>";
$var = 'player'.$id;
$str = $data[$var];
$ar = explode(',',$str);
foreach($ar as $ars){
$ars = ltrim($ars);
echo "   ".$ars."<BR>";
}
echo "</TD>";
}

function printLocation($data){
$location = $data['location'];
$time = $data['time'];
echo "<TD style='margin:5; border:0' width='30%' align='center' valign='middle'>$location<BR>$time<BR>";
$str = $data['link'];
$links=explode(',',$str);
foreach($links as $link){
echo "<a href=$link>".$link."</a><BR>";
}
echo "<BR>Currently Active Games:<BR>";
$q = "SELECT * FROM game WHERE active = '1'";
$r = mysql_query($q) or die("Erro in selecting active games on line: 152".mysql_error());
while($row=mysql_fetch_array($r)){
echo "<a href='index.php?match=".$row['id']."'>".$row['team1']." VS ".$row['team2']."</a><BR>";
}
echo "</TD>";
}

function printTime(){
}

function listPlayer($data){
echo "<TR>";
printPlayers($data,1);
printLocation($data);
printPlayers($data,2);
echo "</TR>";
}

function printData($data){
printlogo($data);
printName($data);
printScore($data);
listplayer($data);
}

function printNote($id){
$q = "SELECT * FROM notes WHERE gameid='$id' ORDER BY id DESC";
$r = mysql_query($q) or die("Error in PrintNote:: ".mysql_error());
while($row=mysql_fetch_array($r)){
$time = $row['time'];
$note = $row['body'];
echo '<tr><td width="100%" colspan="3"><B>';
$fDigit = $time{0};
if($fDigit>='0'&&$fDigit<='9'){
if($time%10==1&&$time!=11)echo $time."st Minute";
else if($time%10==2&&$time!=12)echo $time."nd Minute";
else echo $time."th Minute";
}
else echo $time;

echo "</B><BR>$note</td></tr>";
echo "<tr style='border:0' colspan='3'><td style='border:0'> </td></tr>";
}
}

echo "<table align='center' border='1' width='1000'>";
$data=fetchData();
printData($data);
printNote($data['id']);
echo "</table>";
?>
[/CODE]

Thanks :)

  • 0

i am at work so cant test anything really lol

try


<tr>
<td align='center' width='35' height='40'>
<img src="<?php echo printlogo($teamA); ?>" />
</td>
<td align='center' width='30'></td>
<td align='center' width='35'>
<img src="<?php echo printlogo($teamB); ?>" /></td>
</tr>
[/CODE]

  • 0

<tr>
<td align='center' width='35' height='40'>
<img src="<?php echo getLogo($teamA); ?>" />
</td>
<td align='center' width='30'></td>
<td align='center' width='35'>
<img src="<?php echo getLogo($teamB); ?>" /></td>
</tr>
[/CODE]

  • 0

&lt;snipped&gt;

function getTeamA($data){
  return $data['team1'];
}

function getTeamB($data){
  return $data['team2'];
}

function getLogo($team){
  $team=strtolower($team);
  return "images/$team.png";
}

function printlogo($data){

  $teamA = getTeamA($data);
  $teamB = getTeamB($data);

  echo "&lt;tr&gt;&lt;td align='center' width='35' height='40'&gt;&lt;img src='".getLogo($teamA)."'&gt;&lt;/td&gt;&lt;td align='center' width='30'&gt;&lt;/td&gt;&lt;td align='center' width='35'&gt;&lt;img src='".getLogo($teamB)."'&gt;&lt;/td&gt;&lt;/tr&gt;";
}

function printName($data){

  $teamA = "&lt;B&gt;".getTeamA($data)."&lt;/B&gt;";
  $teamB = "&lt;B&gt;".getTeamB($data)."&lt;/B&gt;";

  echo "&lt;tr&gt;&lt;td align='center' width='35' height='40'&gt;$teamA&lt;/td&gt;&lt;td align='center' width='30'&gt;&lt;/td&gt;&lt;td align='center' width='35'&gt;$teamB&lt;/td&gt;&lt;/tr&gt;";
}

function printData($data){
  printlogo($data);
  printName($data);
  printScore($data);
  listplayer($data);
}

echo "&lt;table align='center' border='1' width='1000'&gt;";
$data=fetchData();
printData($data);
printNote($data['id']);
echo "&lt;/table&gt;";
?&gt;
[/CODE]


[b]Note:[/b] do NOT replace the code you posted with the above, I just snipped it down to some of the bits you need to focus on here to understand why Haggis's code will not work and how to fix it!
[CODE]
function printlogo($data){
  $teamA = getTeamA($data);
  $teamB = getTeamB($data);
}
[/CODE]

[CODE]
&lt;tr&gt;
&lt;td align='center' width='35' height='40'&gt;
&lt;img src="&lt;?php printlogo($teamA) ?&gt;" /&gt;
&lt;/td&gt;
&lt;td align='center' width='30'&gt;&lt;/td&gt;
&lt;td align='center' width='35'&gt;
&lt;img src="&lt;?php printlogo($teamB) ?&gt;" /&gt;&lt;/td&gt;
&lt;/tr&gt;
[/CODE]


[CODE]
&lt;tr&gt;
&lt;td align='center' width='35' height='40'&gt;
&lt;img src="&lt;?php echo printlogo($teamA); ?&gt;" /&gt;
&lt;/td&gt;
&lt;td align='center' width='30'&gt;&lt;/td&gt;
&lt;td align='center' width='35'&gt;
&lt;img src="&lt;?php echo printlogo($teamB); ?&gt;" /&gt;&lt;/td&gt;
&lt;/tr&gt;
[/CODE]


[CODE]
&lt;tr&gt;
&lt;td align='center' width='35' height='40'&gt;
&lt;img src="&lt;?php echo getLogo($teamA); ?&gt;" /&gt;
&lt;/td&gt;
&lt;td align='center' width='30'&gt;&lt;/td&gt;
&lt;td align='center' width='35'&gt;
&lt;img src="&lt;?php echo getLogo($teamB); ?&gt;" /&gt;&lt;/td&gt;
&lt;/tr&gt;
[/CODE]


That does give a result, but doesn't show any images.
http://live.thenashy.com/test.php

The primary flaw in Haggi's code in all three of the above posts is that of scope. The variables $teamA and $teamB only exist [u]within[/u] the printLogo() and printName() functions, not outside of them! Therefore Haggi's code, which exists outside of these functions, tries to use the content of these variables and fails to work.
Additionally, all of the functions in the snipped down set of code (snipped down to show only stuff related to Haggis's code), with the exception of getLogo(), expect to be given a copy of the $data variable, which holds the entire row of data from the database (as an "array"), while Haggis's code is incorrectly trying to give them a variable containing only a team name.
Hence why the HTML in your test page only contains &lt;img src="images/.png"&gt;&lt;/img&gt; instead of something like &lt;img src="images/brisbane broncos.png"&gt;&lt;/img&gt;, it's unable to get the name of the team due to incorrect use of the functions your developer created.
The correct code would be:
[code]
&lt;tr&gt;
	&lt;td align='center' width='35' height='40'&gt;
		&lt;img src="&lt;?php getLogo(getTeamA($data)) ?&gt;" /&gt;
	&lt;/td&gt;
	&lt;td align='center' width='30'&gt;&lt;/td&gt;
	&lt;td align='center' width='35'&gt;
		&lt;img src="&lt;?php getLogo(getTeamB($data)) ?&gt;" /&gt;
	&lt;/td&gt;
&lt;/tr&gt;

This makes the printLogo() function redundant btw. The whole purpose of the printLogo() function is to generate a snippit of HTML code to display a logo, but this replaces that, so you can get rid of it.

What is happening here (assuming the OP needs it explaining), is we are calling the getTeamA() and getTeamB() functions respectively, passing in the entire $data variable, as they expect. These functions return the team name from the $data variable. This return value is then given to getLogo() which puts together and returns the url for the image file.

Really, url's shoud be encoded, so replace the getLogo() function with:

function getLogo($team){
  return rawurlencode("images/" . strtolower($team) . ".png");
}

  • 0

Most of what theblazingangel said is correct, but the final product he gave you is not... There were definitely some redundancies in the code and it was far from professionally done, but the image name still needs echoed out. You only return data that you want echoed out when you are calling the function from within an echo statement:


function getLogo($team){
return rawurlencode("images/" . strtolower($team) . ".png");
}
<tr>
<td align='center' width='35' height='40'>
<img src="<?php echo (getLogo(getTeamA($data))); ?>" />
</td>
<td align='center' width='30'></td>
<td align='center' width='35'>
<img src="<?php echo (getLogo(getTeamB($data))); ?>" />
</td>
</tr>
[/CODE]

Otherwise, the code will not output as you would like it to. Another option is to leave the html as is, and change the return statement to an echo statement:

[CODE]
function getLogo($team){
echo rawurlencode("images/" . strtolower($team) . ".png");
}
[/CODE]

After doing one of those two options, you shouldn't have any more issues.

This topic is now closed to further replies.
  • Recently Browsing   0 members

    • No registered users viewing this page.
  • Posts

    • Mate, you’re looking to spend about $100 - what are you expecting. The A series is not the high end model, no - but “trash” is nonsense. The sort of thing that idiots who only buy the highest end models say as some sort of self validation. They will do everything you need of them.
    • Stack Overflow is launching a version of itself for AI agents by David Uzondu Stack Overflow has announced Stack Overflow for Agents, a platform that traditionally hosts crowdsourced programming solutions for human developers, but now serves autonomous software agents. Basically, Stack Overflow's argument is that the rapid democratization of building software has exposed a major vulnerability. Agents operate in isolation, creating an Ephemeral Intelligence Gap where they waste valuable tokens on something another agent halfway across the world has already solved. That's why, according to the company, a shared, real-time knowledge repository is needed. Stack Overflow for Agents is currently in beta, running as an API-first knowledge exchange where humans review what agents publish. To prevent hallucination issues and keep the database clean, the platform uses a multi-agent verification loop to check code quality. This system forces agents to query the corpus first to locate validated answers rather than running expensive code-generation scripts. To ensure trust, Stack Overflow connects agent contributions directly to the human developer's established reputation through single sign-on credentials. The agents can interact with three distinct post types. One option, Questions, documents unsolved bugs, while "Today I Learned" posts record debugging traces. Blueprints round out the selection by storing reusable design patterns. If an enterprise wants to keep proprietary data private, the Stack Internal platform allows the organization to run the assistant behind its own firewall. Before the massive rise of LLMs, which tanked its traffic by about 50% over the last couple of years, Stack Overflow was the go-to website for millions of programmers seeking coding solutions. Some argue that another reason why the website sort of fell off stems from its notoriously hostile (and condescending) community that frequently closed basic questions and alienated beginners with strict gatekeeping. In order to avoid getting eaten by AI, Stack Overflow has tried several things. When volunteer moderators banned AI-generated content in 2023 to protect data quality, corporate leaders tried to limit those restrictions, prompting the volunteers to stage a massive site-wide strike. Since then, the developer portal has signed major deals with tech companies like Google to bring Stack Overflow data directly into Gemini models and Google Cloud console. A similar deal with OpenAI in 2024 sparked an uproar, leading some users to delete old answers in protest. The company swiftly suspended those accounts to protect the database. It has also experimented with OverflowAI, an AI-powered conversational search tool designed to pull together answers from multiple threads.
    • There are two options for smartphone platforms so consumers don't have much of a choice there. The EU is not making any decisions for customers they just want them to have options if they so choose. I am not sure why you would be for closed platforms. The big tech companies already have so much power and money while are relatively unregulated in the US which is why they run into so much trouble in the EU.
    • Hello, I am using a Moto G Stylus (2025) and happy with it.  I don't know how well the model works on Twigby's network (it looks like they are an MVNO of Verizon).  It looks like they have a BYOD plan, though, so as long as you find a device that works on their network you should be okay.   Regards,   Aryeh Goretsky 
  • Recent Achievements

    • First Post
      StaticMatrix earned a badge
      First Post
    • Week One Done
      StaticMatrix earned a badge
      Week One Done
    • Rookie
      lamborghiniv10 went up a rank
      Rookie
    • One Month Later
      pinnclepd earned a badge
      One Month Later
    • First Post
      X-No-file earned a badge
      First Post
  • Popular Contributors

    1. 1
      +primortal
      533
    2. 2
      PsYcHoKiLLa
      209
    3. 3
      +Edouard
      151
    4. 4
      Steven P.
      100
    5. 5
      ATLien_0
      84
  • Tell a friend

    Love Neowin? Tell a friend!