Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Check your php code with a <code>test.php</code> file. Write </p> <pre><code>&lt;?php echo"My php file"; ?&gt; </code></pre> <p>Open this file in your web browser using localhost with your default port(80) In this case you should write it as <br><code>http://localhost:80/test.php</code> <br> If your test.php file is present in your www directory.</p> <p>If your browser just renders this as a plain text <br> <code>echo"My php file";</code><br> then this means you don't have your server ready to process your php requests, Either your server(Maybe apache) is offline or you've just problems with your http ports.<br></p> <p>For example If you are using Windows(Which by default comes with IIS (<strong>Internet Information Services</strong>) then your port 80 will not be easily available to you, then you can edit your <strong>httpd.conf</strong> file and change your port 80 to 81, and browse your php file at this port in this case you can write <code>http://localhost:81/test.php</code></p> <p>If you see just "php file" without an echo statement, this means you have installed server correctly, In this case your browser will only render <strong>My php file</strong></p> <p>Alternatively you can turn off IIS server manually if you don't want to change your http:// ports by simple steps:</p> <ul> <li>Check whether your port 80 is free or not</li> <li>If it says your port 80 is free then your server can use it well</li> <li>If it says your port 80 is used by IIS then you can stop IIS server manually </li> <li>Then you will be able to use your php server</li> </ul>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload