Putting the table outside of the php marks did solve the invisibility problem. Thank you, I will leave this topic open in case any more problems arise.
On Tuesday, July 18, 2017 at 3:41:44 PM UTC-4, Dennis Lee Bieber wrote: > > On Tue, 18 Jul 2017 10:17:23 -0700 (PDT), Tomas Medina > <[email protected] <javascript:>> declaimed the following: > > >the tables to disappear. I discovered that the highlighted line is the > > No "highlighted line" made it through gmane's server... > > >culprit: > > > ><html> > ><head> > > <title>Table Test</title> > > > > <link rel="stylesheet" type="text/css" href="styles.css"> > > > ></head> > > > ><BODY> > > > ><p> > > > ><?php > > > >echo "Table Test<br>"; > > > >////////////////////////////////////////////////////// > >// Connecting to the Database > >////////////////////////////////////////////////////// > >$con = mysqli_connect("localhost","root","Force1$", "AUTO"); > > > >//Print HTML table > >echo "<TABLE width=40% cellpadding=5 cellspacing=0 border=1>"; > >echo " > ><TR> > ><TD><b>ID</TD> > ><TD><b>LOCATION</TD> > ><TD><b>SEQUENCE</TD> > ><TD><b>TIME</TD> > ><TD><b>UPDATE</TD> > ><TD><b>DELETE</TD> > ></TR>"; > > > >?> > > > ></body> > ></html> > > > > I don't know PHP, but based upon what came through here -- there > is no > logic to fetch/display rows from the database, nor even to end the HTML > TABLE structure. Heck, I'd probably move the contents of the two "echo" > statements out into pure HTML (ie; just > > <TABLE ...> > <TR> > <TD>...</TD> > > positioned /before/ the <?php ) > -- > Wulfraed Dennis Lee Bieber AF6VN > [email protected] <javascript:> HTTP://wlfraed.home.netcom.com/ > > -- For more options, visit http://beagleboard.org/discuss --- You received this message because you are subscribed to the Google Groups "BeagleBoard" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/beagleboard/b04a6047-c9ce-470c-a8bd-f31636995c4a%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
