<p dir="ltr">Take a look at the online php documentation there are loads on examples on there to get you started.</p>
<p dir="ltr">I&#39;d also ditch the book as it&#39;s old and find some up to date tutorials online.</p>
<div class="gmail_quote">On Jul 28, 2012 9:38 AM, &quot;Michael E. Rentell&quot; &lt;<a href="mailto:michael.rentell@ntlworld.com">michael.rentell@ntlworld.com</a>&gt; wrote:<br type="attribution"><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">

  
    
  
  <div bgcolor="#FFFFFF" text="#000000">
    <font face="sans-serif">Thanks to all who responded to my php
      queries last week. All were useful.<br>
      I have begun working through &quot;PHP &amp; MySQL for DUMMIES&quot; but I
      am having problems with the sample scripts in the book which is
      dated 2004 and assumes the reader is using php 5.0.<br>
      However, as I&#39;ve just started with Ubuntu I find that my php is
      5.5.24.<br>
      It now occurs to me that perhaps there are serious differences. Is
      it possible ver 5.5 is not backwards compatible with php 5.0?<br>
      That would explain the problems. The sample scripts offered by
      KLUG member all seem to work, but the book scripts don&#39;t.<br>
      Still baffled - but learning slowly.<br>
      MikeR<br>
      <br>
    </font>
    <div>On 23/07/12 11:45, Karl Buckland wrote:<br>
    </div>
    <blockquote type="cite">
      <pre>Hi Mike,

I&#39;m guessing that you are getting an error, but errors are not being
displayed. They&#39;re probably being logged to Apache&#39;s error log.

To view the errors in your browser you can use the following PHP code:
--
ini_set(&#39;display_errors&#39;, 1);
error_reporting(E_ALL);
--

Hopefully if you add those line sat the top of the file, you should
see an error.

Regards,

Karl B



On 23 July 2012 11:42, Michael E. Rentell <a href="mailto:michael.rentell@ntlworld.com" target="_blank">&lt;michael.rentell@ntlworld.com&gt;</a> wrote:
</pre>
      <blockquote type="cite">
        <pre>Good morning all,
As a part of my plan to limit the atrophying of my ageing brain I am working
through &#39;PHP &amp; MySQL for Dummies&#39;. I think I have got apache installed OK
because when I point firefox at localhost I get the &#39;It&#39;s working&#39; response.
So I then composed the following script, called it test.php and stored it in
/var/www:

-----------------------------

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;PHP Test&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;This is an HTML line
&lt;p&gt;
&lt;?php
  echo &quot;This is a PHP line&quot;;
  phpinfo();
?&gt;
&lt;/body&gt;&lt;/html&gt;

----------------------------

When I point firefox at it I get a huge table of dozens of properties which
baffle me. But it seems to indicate that php is also working.

The next step in the book is to generate a mysql db so from the CLI I went
through generating mydb, user mick and a simple password. However, there is
no data in this DB.

Then to test that I composed the following script, called it test2.php and
added it to /var/www:

--------------------------

&lt;?php

$host = &quot;localhost&quot;;
$user = &quot;mick&quot;;
$pass = &quot;simplepassword&quot;;

$r = mysql_connect($host, $user, $pass);

if (!$r) {
    echo &quot;Could not connect to server\n&quot;;
    trigger_error(mysql_error(), E_USER_ERROR);
} else {
    echo &quot;Connection established\n&quot;;
}

echo mysql_get_server_info() . &quot;\n&quot;;

mysql_close();

?&gt;

----------------------------

When I point firefox at localhost/test2 I get a completely clear screen. It
neither seems to work or return the error. It is supposed to return a
different table of parameters etc.

Am I doing something stupid here/ If anyone can help an aged beginner I
would be most grateful. I&#39;ve been banging my head against this for several
days and the book isn&#39;t any help as it expects the text to &#39;just work&#39; and
it don&#39;t.

MikeR
in Folkestone

_______________________________________________
Kent mailing list
<a href="mailto:Kent@mailman.lug.org.uk" target="_blank">Kent@mailman.lug.org.uk</a>
<a href="https://mailman.lug.org.uk/mailman/listinfo/kent" target="_blank">https://mailman.lug.org.uk/mailman/listinfo/kent</a>
</pre>
      </blockquote>
      <pre>.

</pre>
    </blockquote>
    <br>
  </div>

<br>_______________________________________________<br>
Kent mailing list<br>
<a href="mailto:Kent@mailman.lug.org.uk">Kent@mailman.lug.org.uk</a><br>
<a href="https://mailman.lug.org.uk/mailman/listinfo/kent" target="_blank">https://mailman.lug.org.uk/mailman/listinfo/kent</a><br></blockquote></div>