Ok. The use of the double qoutes was a huge help. It makes more sense now. It does make the code much more readable. and it will help me import html files much easier.
I also looked up isset() in the manual and I understand it checks to see if the variable is set.
I didnt fully understand the use of $POST and $GET. Turning the register globals off confused me a little, but I am figuring it out.
Ok now we have eliminated that problem another has come about.
now I get:
Notice: Undefined variable: list in c:\inetpub\wwwroot\svscripts\svsitetest\createdb.php on line 70
which is this line:
{
$list .= mysql_tablename($rs1, $row)." | ";
}
Thank you so much for your help. I have learned quite a bit from you today.
Now if I write it like this:
{
$list = mysql_tablename($rs1, $row)." | ";
}
It doesnt display the error, but it only displays the last database in the list. I could surpress the error, but I dont think that would be a good thing to do. Not sure, but it doesnt seem like that would be the best way.
Thank you for all of your help.
Dave Strosnider