I am making a wordpress plugin and i am having a little issue with this paragraph of code. For some reason

echo "<table style='border:solid 1px #000000;'>
  <tr>
    <td style='border:solid 1px #000000;'>Total Submission Sites</td>
    <td style='border:solid 1px #000000;'>Server Status</td>
    <td style='border:solid 1px #000000;'>Plugin Version</td>
    <td style='border:solid 1px #000000;'>Latest Update</td>
  </tr>
  <tr>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'> <?php require_once('http://wert.in/pluginfiles/files/v101/v101.php') ?></td>
  </tr>
</table>";
link|improve this question

40% accept rate
Is allow_url_fopen enabled? Normally it's not so you can't include/require remote files (which is a hideous security hole) – Marc B Feb 3 '11 at 14:05
feedback

2 Answers

Don't put the require into the echo, or it will just display the text and not parse the function. You need to end the echo with a "; then the require, and then output again. Or you can use echo "something" . require(blah) . "end"; but I didn't use this for simplicities sake. Also, the require uses a local path/file not remote. This is the equivelent of trying to open a URL in Notepad on your computer, when its looking for something on your hard drive instead.

// start the echo
echo "<table style='border:solid 1px #000000;'>
  <tr>
    <td style='border:solid 1px #000000;'>Total Submission Sites</td>
    <td style='border:solid 1px #000000;'>Server Status</td>
    <td style='border:solid 1px #000000;'>Plugin Version</td>
    <td style='border:solid 1px #000000;'>Latest Update</td>
  </tr>
  <tr>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>";

// Still using php, dont need the opening tag. 
require_once('http://wert.in/pluginfiles/files/v101/v101.php');

// Finish the echo
echo "</td>
  </tr>
</table>";
link|improve this answer
Didn't even catch that the URL is external. This may cause a problem, like noted in the initial comment above. require_once looks for a local file, i.e: /pluginfiles/files/v101/v101.php not a URL. – David Houde Feb 3 '11 at 14:09
Thank you worked perfectly :) – Shaquille Ray Feb 9 '11 at 4:19
feedback

why echo a whole string and not without and only <?php require_once( [.....] ); ?>

<table style='border:solid 1px #000000;'>
  <tr>
    <td style='border:solid 1px #000000;'>Total Submission Sites</td>
    <td style='border:solid 1px #000000;'>Server Status</td>
    <td style='border:solid 1px #000000;'>Plugin Version</td>
    <td style='border:solid 1px #000000;'>Latest Update</td>
  </tr>
  <tr>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'>test</td>
    <td style='border:solid 1px #000000;'><?php require_once('./pluginfiles/files/v101/v101.php') ?></td>
  </tr>
</table>
link|improve this answer
Just make sure that if this is just a chuck of a larger file using PHP, you need to use a php end tag, and opening tag again before and after. i.e: ?>TrickerAnswerHere<?php – David Houde Feb 3 '11 at 14:15
He is tellin he is using Wordpress, and in that case i would use it like this. Because Wordpress is using it in this way. But if there is MORE PHP then HTML then i should do it with a echo – Tricker Feb 3 '11 at 15:49
Thanks tricker this worked perfectly as well as with the repsonse with david :) – Shaquille Ray Feb 9 '11 at 4:33
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.